mirror of
https://github.com/LukeHagar/pypistats.org.git
synced 2025-12-06 04:21:09 +00:00
7 lines
213 B
Bash
Executable File
7 lines
213 B
Bash
Executable File
export ENV=prod
|
|
set -o allexport
|
|
source pypistats/secret/$ENV.env
|
|
set +o allexport
|
|
# pipenv run flask run --host=0.0.0.0
|
|
pipenv run gunicorn -b 0.0.0.0:5000 -w 4 --access-logfile - --error-log - pypistats.run:app
|