cammiechat/run.sh

7 lines
128 B
Bash
Raw Normal View History

2018-12-04 19:07:17 +00:00
#!/bin/bash
cd "$(dirname "$0")"
2018-12-04 20:12:34 +00:00
pipenv install
2018-12-04 19:07:17 +00:00
export FLASK_APP=chat.py
2018-12-04 20:12:34 +00:00
exec pipenv run gunicorn -w 1 -b0.0.0.0:5000 chat:app