Skip to content

Commit

Permalink
chore: fix command and make similiar to other
Browse files Browse the repository at this point in the history
  • Loading branch information
pizzaisdavid committed Jun 12, 2024
1 parent 24410be commit b746b82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@
"start:themes": "yarn workspace oa-themes dev",
"start:components": "yarn workspace oa-components dev",
"start:platform": "yarn build:shared && vite",
"start:platform:for-emulated-backend": "yarn build:shared && vite --port 4000",
"start:platform-ci": "yarn build:shared && vite --port 3456",
"frontend:watch:for-emulated-backend": "concurrently --kill-others --names themes,components,platform --prefix-colors yellow,cyan,blue,magenta \"yarn start:themes\" \"yarn start:components\" \"cross-env PORT=4000 yarn start:platform\"",
"frontend:for-emulated-backend:watch": "concurrently --kill-others --names themes,components,platform --prefix-colors yellow,cyan,blue,magenta \"yarn start:themes\" \"yarn start:components\" \"yarn start:platform:for-emulated-backend\"",
"backend:emulator:watch": "concurrently --kill-others \"yarn workspace functions watch\" \"docker-compose up --force-recreate --build emulator\"",
"backend:emulator:stop": "docker stop $(docker ps -a -q)",
"build:themes": "yarn workspace oa-themes build",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ To make things easier, some Yarn commands were created.
### Starting the frontend

```
yarn run frontend:watch:for-emulated-backend
yarn run frontend:for-emulated-backend:watch
```

This is similar to `yarn run start` but configures the frontend to connect to the local backend.
Expand Down

0 comments on commit b746b82

Please sign in to comment.