mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
6 lines
215 B
Bash
6 lines
215 B
Bash
|
#! /usr/bin/env bash
|
||
|
|
||
|
# Start the App Server
|
||
|
# uvicorn felicity.main:flims --reload --host=0.0.0.0 --port=8000
|
||
|
gunicorn --workers 1 --bind 0.0.0.0:8000 -k uvicorn.workers.UvicornWorker --reload felicity.main:flims
|