5 lines
141 B
Bash
5 lines
141 B
Bash
|
#!/bin/sh
|
||
|
source .env
|
||
|
echo "poetry run gunicorn --workers=${WORKERS:-2} 'pyles:app'"
|
||
|
poetry run gunicorn --workers=${WORKERS:-2} 'pyles:app'
|