4 lines
186 B
Bash
Executable File
4 lines
186 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd frontend && npm run build && cd ..
|
|
gunicorn --bind 0.0.0.0:5000 --workers 1 --worker-class geventwebsocket.gunicorn.workers.GeventWebSocketWorker app:app --log-level info |