We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 539743e commit 36b717bCopy full SHA for 36b717b
README.md
@@ -45,7 +45,6 @@ How to use the template:
45
6. Install and sync all the project and development dependencies.
46
```shell
47
make install
48
- make sync
49
```
50
7. The Gherkin Feature files, step files and pytest files go in `tests` directory:
51
run-app.sh
@@ -0,0 +1,8 @@
1
+#!/usr/bin/env bash
2
+
3
+python3 \
4
+ /app/.venv/bin/gunicorn \
5
+ --bind 0.0.0.0:8080 \
6
+ --worker-tmp-dir /dev/shm \
7
+ -k uvicorn.workers.UvicornWorker \
8
+ app:app
0 commit comments