mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-22 16:03:00 +08:00
6 lines
No EOL
148 B
Python
6 lines
No EOL
148 B
Python
import uvicorn
|
|
from felicity.main import flims
|
|
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run(flims, host="0.0.0.0", port=8000, debug=True, workers=4) |