felicity-lims/backend/felicity_lims/runserver.sh

6 lines
229 B
Bash
Raw Normal View History

2021-01-06 19:52:14 +08:00
#! /usr/bin/env bash
# Start the App Server
2021-12-17 04:26:13 +08:00
# uvicorn felicity.main:flims --reload --host=0.0.0.0 --port=8000 --workers 10
gunicorn --workers 10 --bind 0.0.0.0:8000 -k uvicorn.workers.UvicornWorker --reload felicity.main:flims