File size: 286 Bytes
f52d137 |
1 2 3 4 5 6 |
#!/bin/bash
#source /app/.venv/bin/activate; python -c "from backend.app import run; run()"
#source /app/.venv/bin/activate; gunicorn --bind 0.0.0.0:$PORT --workers 4 --timeout 120 app:app
source /app/.venv/bin/activate; gunicorn --bind 0.0.0.0:$PORT --workers 1 --timeout 120 app:app
|