pdf-web-toolkit/init.sh
Niklas Müller 6b74b89029 backend improvements
- move_page
- merge_all_single_pages
- constructor with optional parameter
2024-01-22 16:47:35 +01:00

9 lines
No EOL
283 B
Bash
Executable file

#!/bin/bash
# (cd /app/ && pytest tests/test_pdf_util.py)
(cd /app/ && pytest -o log_cli=true)
# (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