cammiechat/run.sh

6 lines
104 B
Bash
Raw Normal View History

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