4 lines
181 B
Bash
4 lines
181 B
Bash
#!/bin/sh
|
|
source .env
|
|
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'
|