current working example
This commit is contained in:
parent
95661fb73e
commit
f19c7861b0
14 changed files with 379 additions and 45 deletions
7
init.sh
7
init.sh
|
|
@ -1,6 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
# (cd /app/ && gunicorn --access-logfile '-' --error-logfile '-' -w 4 -b 0.0.0.0:8000 wsgi:app) # Dev (Logging to console)
|
||||
(cd /app/ && gunicorn -w 4 -b 0.0.0.0:8000 wsgi:app)
|
||||
# (cd /app/ && pytest tests/test_pdf_util.py)
|
||||
(cd /app/ && pytest)
|
||||
|
||||
# (cd /app/ && gunicorn -w 4 -b 0.0.0.0:8000 wsgi:app)
|
||||
(cd /app/ && gunicorn --access-logfile '-' --error-logfile '-' -w 4 -b 0.0.0.0:8000 wsgi:app) # Dev (Logging to console)
|
||||
|
||||
/bin/bash
|
||||
Loading…
Add table
Add a link
Reference in a new issue