You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/emoji-key.md
+29-29Lines changed: 29 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,41 +8,41 @@ sidebar_label: Emoji Key ✨
8
8
9
9
> To have a contribution added when using the [Bot](bot/overview) or [CLI](cli/overview) use the keyword in the `Type` column. The bot will also use [basic Natural Language Parsing](https://github.com/all-contributors/app/blob/master/lib/parse-comment.js) to determine your contribution intent.
10
10
11
-
Emoji/Type | Represents | Comments
12
-
:---: | :---: | :---:
13
-
🔊 <br /> `audio` | Audio | Podcasts, background music or sound effects
14
-
♿️ <br /> `a11y` | Accessibility | Reporting or working on accessibility issues
15
-
🐛 <br /> `bug` | Bug reports | Links to issues reported by the user on this project
16
-
📝 <br /> `blog` | Blogposts | Links to the blogpost
17
-
💼 <br /> `business` | Business Development | People who execute on the business end
18
-
💻 <br /> `code` | Code | Links to commits by the user on this project
19
-
🖋 <br /> `content` | Content | e.g. website copy, blog posts are separate
20
-
🔣 <br /> `data` | Data | Links to contributed data for the project (both tests and datasets)
21
-
📖 <br /> `doc` | Documentation | Links to commits by the user on this project, Wiki, or other source of documentation
22
-
🎨 <br /> `design` | Design | Links to the logo/iconography/visual design/etc.
23
-
💡 <br /> `example` | Examples | Links to the examples
11
+
Emoji/Type | Represents | Comments |
12
+
:---: | :---: | :---: |
13
+
🔊 <br /> `audio` | Audio | Podcasts, background music or sound effects |
14
+
♿️ <br /> `a11y` | Accessibility | Reporting or working on accessibility issues |
15
+
🐛 <br /> `bug` | Bug reports | Links to issues reported by the user on this project |
16
+
📝 <br /> `blog` | Blogposts | Links to the blogpost |
17
+
💼 <br /> `business` | Business Development | People who execute on the business end |
18
+
💻 <br /> `code` | Code | Links to commits by the user on this project |
19
+
🖋 <br /> `content` | Content | e.g. website copy, blog posts are separate |
20
+
🔣 <br /> `data` | Data | Links to contributed data for the project (both tests and datasets) |
21
+
📖 <br /> `doc` | Documentation | Links to commits by the user on this project, Wiki, or other source of documentation |
22
+
🎨 <br /> `design` | Design | Links to the logo/iconography/visual design/etc. |
23
+
💡 <br /> `example` | Examples | Links to the examples |
Copy file name to clipboardExpand all lines: docs/project/contribute.md
+32-6Lines changed: 32 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,15 +62,41 @@ After you translate strings in any given language, you won't see those changes a
62
62
63
63
Search is by algolia, the configuration is at <https://github.com/algolia/docsearch-configs/blob/master/configs/all-contributors.json>
64
64
65
-
## Running the site locally:
65
+
## Run the website locally:
66
66
67
-
All Contributors uses Docusaurus to maintain our documentation website. For more info visit the [Docusaurus Website](https://docusaurus.io)
67
+
All Contributors currently uses [Docusaurus 1.x](https://docusaurus.io) for our documentation website.
68
68
69
-
To get started locally:
69
+
To build the docs locally:
70
70
71
-
-`yarn install`
72
-
-`yarn start`
73
-
- go to `http://localhost:3000` (Refresh the page for your changes to be reflected)
71
+
*https://tutorial.docusaurus.io/docs/intro
72
+
73
+
1. Make sure `npm` is installed on your machine. Use the [nodejs documentation](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) if you aren't sure how to install `npm`.
74
+
75
+
To check that npm is installed run the following in your favorite shell:
76
+
77
+
`npm -v`
78
+
79
+
Next, make sure you have atleast node version 0.22 or higher. To check the version,
80
+
use:
81
+
82
+
`node -v`
83
+
84
+
If you don't have atleast version `.22` or higher, please install node or upgrade your current version.
85
+
86
+
Install the newest (deprecated) version of Docusaurus:
87
+
88
+
`npm install docusaurus@1.14.7 --save-dev`
89
+
90
+
Then install the dependencies (`npm i` is shorthand for `npm install`):
91
+
92
+
`npm i`
93
+
94
+
Once you have completed the above, you can launch a server locally that will build and run the docs locally. In your favorite shell run:
95
+
96
+
`npm run start`
97
+
98
+
- Then, go to `http://localhost:3000` and you will see the all contributors website there!
99
+
- Refresh the page as you make changes to the markdown pages in site locally
0 commit comments