forked from MarseyWorld/MarseyWorld
8 lines
349 B
Bash
8 lines
349 B
Bash
/etc/init.d/nginx start
|
|
cd ./chat
|
|
yarn install
|
|
yarn chat
|
|
cd ..
|
|
gunicorn files.__main__:app load_chat -k geventwebsocket.gunicorn.workers.GeventWebSocketWorker -w 1 -b 0.0.0.0:5001 --max-requests 30000 --max-requests-jitter 30000 -D
|
|
gunicorn files.__main__:app -k gevent -w 1 --reload -b 0.0.0.0:5000 --max-requests 30000 --max-requests-jitter 10000
|