Skip to content

Commit e5c0057

Browse files
committed
Use yarn instead of npm in README
since a yarn.lock is checked in (and package-lock is not)
1 parent 1391764 commit e5c0057

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ You should see a `.env-example` file. Copy this and remove the `-example`. The f
4545

4646
### Starting the dev server
4747

48-
In order to have the UI hot reload for development, we utilized `webpack-dev-server` this allows for easier debugging, etc. In order for the dev-server to connect to the API, you must first have set the `.env` file variables and have started the server with `node server.js`
48+
In order to have the UI hot reload for development, we utilized `webpack-dev-server` this allows for easier debugging, etc. In order for the dev-server to connect to the API, you must first have set the `.env` file variables and have started the server with `yarn start`
4949

5050
```zsh
5151
# Install dependencies
52-
npm install
52+
yarn install
5353

5454
# Start dev server
55-
npm run dev
55+
yarn dev
5656

5757
# Start the node server in another terminal window.
58-
node server
58+
yarn start
5959
```
6060

6161
## Running production

0 commit comments

Comments
 (0)