Skip to content

Commit

Permalink
Slightly better dev instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
benogle committed Jan 23, 2021
1 parent 9eb9e5c commit d777ff0
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,19 @@ Note: Check out a [JSON cheat sheet](https://cheatography.com/gaston/cheat-sheet

## Dev

If you don't have it already, install [nvm](https://github.com/nvm-sh/nvm#installing-and-updating) (or [nvm-windows](https://github.com/coreybutler/nvm-windows)). Then install node and yarn:

```sh
nvm install 14.15
nvm use 14.15 # make sure you're on node 14.x
npm install --global yarn
```

Then get the app running

```sh
nvm use # make sure you're on node 14
yarn install
yarn dev # starts the app
```

Once running, you can make changes and they should immediately be reflected in the running app.

0 comments on commit d777ff0

Please sign in to comment.