mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 08:23:00 +08:00
5 lines
214 B
Bash
Executable file
5 lines
214 B
Bash
Executable file
#! /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
|