12 lines
576 B
Bash
Executable File
12 lines
576 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$FLASK_ENV" == "production" ]; then
|
|
gunicorn --bind=0.0.0.0:80 --workers=2 --threads=2 main:app --env FLASK_ENV="production" --error-logfile /code/gunicorn.error.log --access-logfile /code/gunicorn.log --capture-output --enable-stdio-inheritance
|
|
else
|
|
cd /pybook_mapped_volume
|
|
gunicorn --bind=0.0.0.0:5000 --workers=1 --threads=1 main:app --env FLASK_ENV="$FLASK_ENV" --error-logfile /code/gunicorn.error.log --access-logfile /code/gunicorn.log --capture-output --enable-stdio-inheritance --reload
|
|
# just in case it fails
|
|
sleep 99999
|
|
fi
|
|
|