We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9a11b9 commit 1b54da8Copy full SHA for 1b54da8
docs/developers/running.md
@@ -1,9 +1,13 @@
1
# Running the app
2
-1. Run the Ruby server
+
3
+## Prerequisites
4
+- The setup process is complete. If not, follow the [setup guide](../setup.md)
5
6
+## Running the app
7
+1. Run the Dev Server
8
```bash
-bundle exec puma
-```
-This should also start the Node.JS server. If it doesn't, run the following command:
-```bash
-node index.js
9
+yarn dev
10
```
11
+- This should allow you to make changes to the code and see them live on the website.
12
+## Note:
13
+- If you are making changes to the Node Server, you will need to restart the server for the changes to take effect.
0 commit comments