8 lines
121 B
Bash
Executable File
8 lines
121 B
Bash
Executable File
#/bin/bash
|
|
|
|
nohup .venv/bin/gunicorn \
|
|
--bind 127.0.0.1:5000 \
|
|
--worker-class eventlet \
|
|
--workers 1 \
|
|
run:app &
|