You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Switch to docker compose command, fix tests (#855)
* Switch to docker compose cmd
* Update versions in pre-commit
* Update inner pre commit config
* Bump upload artifact
* Remove version from docker compose config
* fix test script, remove extra package
The backend setup of docker-compose is set to automatically reload the app whenever code is updated. However, for frontend it's easier to develop locally.
46
+
The backend setup of dockercompose is set to automatically reload the app whenever code is updated. However, for frontend it's easier to develop locally.
47
47
48
48
```bash
49
-
docker-compose stop frontend
49
+
dockercompose stop frontend
50
50
cd frontend
51
51
yarn
52
52
yarn start
@@ -66,7 +66,7 @@ Don't forget to edit the `.env` file and update the `BACKEND_CORS_ORIGINS` value
66
66
If you add a dependency, you'll need to rebuild your containers like this:
67
67
68
68
```bash
69
-
docker-compose up -d --build
69
+
dockercompose up -d --build
70
70
```
71
71
72
72
### Regenerate front-end API package
@@ -83,24 +83,24 @@ These two are the most used commands when working with alembic. For more info, f
0 commit comments