Less annoying port number for prod

This commit is contained in:
Sage Vaillancourt 2021-07-31 18:38:01 -04:00
parent e37cc3db9b
commit 161b20f39d
1 changed files with 1 additions and 1 deletions

2
start
View File

@ -14,7 +14,7 @@ fi
if [[ "$1" == "prod" ]]; then
echo "Starting gunicorn production server..."
gunicorn -b 0.0.0.0:6969 "flaskr:create_app()"
gunicorn -b 0.0.0.0:1312 "flaskr:create_app()"
else
echo "Starting local dev server..."
export FLASK_ENV=development