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
{{ message }}
This repository was archived by the owner on Dec 29, 2021. It is now read-only.
The server will be running on `http://localhost:8000`, and has automatic reload enabled.
15
18
16
19
### Testing
17
20
18
-
```
19
-
docker-compose -p test --project-directory . -f docker/docker-compose.yml -f docker/docker-compose.test.yml \
20
-
run --service-ports app sh -c '. scripts/setup.sh && bash'
21
-
```
22
-
23
-
Changes to the source code will automatically be mirrored in the container. A bind mount connects the project directory and the container so that you can run commands like `pytest`.
21
+
1. Start the container. A bind mount connects the project directory and the container so that changes to the source code will automatically be mirrored in the container.
22
+
```
23
+
docker-compose \
24
+
-p test \
25
+
--project-directory . \
26
+
-f docker/docker-compose.yml \
27
+
-f docker/docker-compose.test.yml \
28
+
run --service-ports app sh -c '. scripts/setup.sh && bash'
0 commit comments