felicity-lims/backend/felicity_lims/runserver.sh

7 lines
313 B
Bash
Raw Normal View History

2021-01-06 19:52:14 +08:00
#! /usr/bin/env bash
2022-02-23 18:35:43 +08:00
# export LOAD_SETUP_DATA=False
2021-01-06 19:52:14 +08:00
# Start the App Server
# uvicorn felicity.main:flims --reload --host=0.0.0.0 --port=8000 --workers 4
2022-06-19 04:29:47 +08:00
gunicorn --workers 4 --bind 0.0.0.0:8000 -k uvicorn.workers.UvicornWorker --reload --access-logfile - --error-logfile - --log-level debug felicity.main:flims