6 lines
128 B
Bash
Executable file
6 lines
128 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd "$(dirname "$0")"
|
|
pipenv install
|
|
export FLASK_APP=chat.py
|
|
exec pipenv run gunicorn -w 1 -b0.0.0.0:5000 chat:app
|