We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent debc48d commit 03a38e3Copy full SHA for 03a38e3
README.md
@@ -38,7 +38,9 @@ The steps here only need to be run once.
38
39
1. Bring up the development services
40
41
- docker-compose up
+ docker-compose up --build
42
+
43
+ The `--build` option ensures any new dependencies are included.
44
45
1. Open the development API
46
bin/start-api
@@ -1,5 +1,8 @@
1
#!/bin/sh
2
3
-pip install -r requirements.txt -U
+# Wait for postgres to start
4
+# https://github.com/docker/compose/issues/374
5
+sleep 3
6
7
python manage.py migrate
8
gunicorn gettingstarted.wsgi --log-file - --reload --workers 2
0 commit comments