pyles/entry.sh

5 lines
181 B
Bash
Raw Normal View History

2023-09-29 22:31:32 +02:00
#!/bin/sh
source .env
2023-10-01 03:39:06 +02:00
echo "poetry run gunicorn --workers=${WORKERS:-2} --bind=0.0.0.0:8000 'pyles:app'"
poetry run gunicorn --workers=${WORKERS:-2} --bind=0.0.0.0:8000 'pyles:app'