Skip to content

Commit

Permalink
refactor(build): update command usage
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianUntermoser committed Sep 10, 2024
1 parent 0263d03 commit cbf278d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cms/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ RUN chown -R node:node /opt/app
USER node
RUN ["npm", "run", "build"]
EXPOSE 1337
CMD ["npm", "run", "develop"]
CMD ["npm", "run", "dev"]
6 changes: 3 additions & 3 deletions cms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

Strapi comes with a full featured [Command Line Interface](https://docs.strapi.io/dev-docs/cli) (CLI) which lets you scaffold and manage your project in seconds.

### `develop`
### `dev`

Start your Strapi application with autoReload enabled. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-develop)

```
npm run develop
npm run dev
# or
yarn develop
yarn dev
```

### `start`
Expand Down

0 comments on commit cbf278d

Please sign in to comment.