current working example

This commit is contained in:
Niklas Müller 2024-01-05 11:53:12 +01:00
parent 95661fb73e
commit f19c7861b0
14 changed files with 379 additions and 45 deletions

View file

@ -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