felicity-lims/backend/felicity_lims/runserver.sh
2022-06-18 22:29:47 +02:00

6 lines
313 B
Bash
Executable file

#! /usr/bin/env bash
# export LOAD_SETUP_DATA=False
# Start the App Server
# uvicorn felicity.main:flims --reload --host=0.0.0.0 --port=8000 --workers 4
gunicorn --workers 4 --bind 0.0.0.0:8000 -k uvicorn.workers.UvicornWorker --reload --access-logfile - --error-logfile - --log-level debug felicity.main:flims