Skip to content

Commit 36b717b

Browse files
committed
Add run-app script
1 parent 539743e commit 36b717b

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ How to use the template:
4545
6. Install and sync all the project and development dependencies.
4646
```shell
4747
make install
48-
make sync
4948
```
5049
7. The Gherkin Feature files, step files and pytest files go in `tests` directory:
5150
```

run-app.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)