cammiechat/run.sh

6 lines
102 B
Bash
Raw Normal View History

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