pdf-web-toolkit/init.sh

9 lines
301 B
Bash
Raw Permalink Normal View History

2023-10-11 17:51:35 +00:00
#!/bin/bash
2024-01-05 10:53:12 +00:00
# (cd /app/ && pytest tests/test_pdf_util.py)
(cd /app/ && pytest -o log_cli=true)
2024-01-05 10:53:12 +00:00
# (cd /app/ && gunicorn -w 4 -b 0.0.0.0:8000 wsgi:app)
2024-01-23 15:27:40 +00:00
(cd /app/ && gunicorn --access-logfile '-' --error-logfile '-' -w 4 -b 0.0.0.0:8000 wsgi:app --log-level debug) # Dev (Logging to console)
2023-10-11 17:51:35 +00:00
/bin/bash