Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: dev section docs more opinionated, explicit call to build #279

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -126,17 +126,17 @@ If you don't have redis running locally, you can start it with:
docker compose -f docker-compose.redis.yml up -d
```

Then run:
Run these two commands first to ensure the `./dist` folder is properly populated and all required packages are installed:

```
npm run dev
```shell
npm ci
npm run build
```

or
Then run this to start a local dev instance and reload the app when it sees changes to local files:

```
npm run build
npm start
```shell
npm run dev
```

### Docker with static code