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