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: developer_docs/installation.md
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -27,11 +27,11 @@ _Note_: The installation steps assume you are using a Unix-like shell. If you ar
27
27
7.`$ cp .env.example .env`
28
28
8. (Optional) Update `.env` with necessary keys to enable certain app behaviors, i.e. add Github ID and Github Secret if you want to be able to log in with Github.
29
29
9. Run `$ npm run fetch-examples` to download the example sketches into a user called 'p5'. Note that you need to configure your GitHub Credentials, which you can do by following the [Github API Configuration](#github-api-configuration) section.
30
-
31
-
10.`$ npm start`
32
-
11. Navigate to [http://localhost:8000](http://localhost:8000) in your browser
33
-
12. Install the [React Developer Tools](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en)
34
-
13. Open and close the Redux DevTools using `ctrl+h`, and move them with `ctrl+w`
30
+
10. Enable Prettier in your text editor by following [this guide](https://prettier.io/docs/en/editors.html).
31
+
11.`$ npm start`
32
+
12. Navigate to [http://localhost:8000](http://localhost:8000) in your browser
33
+
13. Install the [React Developer Tools](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en)
34
+
14. Open and close the Redux DevTools using `ctrl+h`, and move them with `ctrl+w`
35
35
36
36
## Docker Installation
37
37
@@ -49,20 +49,20 @@ Note that this takes up a significant amount of space on your machine. Make sure
49
49
4.`$ cp .env.example .env`
50
50
5. (Optional) Update `.env` with necessary keys to enable certain app behavoirs, i.e. add Github ID and Github Secret if you want to be able to log in with Github.
51
51
6.`$ docker-compose -f docker-compose-development.yml run --rm app npm run fetch-examples` - note that you need to configure your GitHub Credentials, which you can do by following the [Github API Configuration](#github-api-configuration) section.
52
-
52
+
7. Enable Prettier in your text editor by following [this guide](https://prettier.io/docs/en/editors.html).
53
53
54
54
Now, anytime you wish to start the server with its dependencies, you can run:
If you don't have the full server environment running, you can launch a one-off container instance (and have it automatically deleted after you're done using it):
64
64
65
-
10.`$ docker-compose -f docker-compose-development.yml run app --rm bash -l`
65
+
11.`$ docker-compose -f docker-compose-development.yml run app --rm bash -l`
0 commit comments