pdf-web-toolkit/init.sh

6 lines
199 B
Bash
Raw Normal View History

2023-10-11 17:51:35 +00:00
#!/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)
/bin/bash