Release v0.1.1 #1

Merged
kqjy merged 20 commits from next into main 2025-11-22 12:31:27 +00:00
2 changed files with 5 additions and 2 deletions
Showing only changes of commit 57c40dcdcc - Show all commits

View File

@@ -2,7 +2,7 @@
set -e
# Start API server in background
gunicorn "app:create_api_app()" --bind 0.0.0.0:5000 --workers 4 --access-logfile - &
gunicorn "app:create_api_app()" -c gunicorn_conf.py --bind 0.0.0.0:5000 --workers 4 --access-logfile - &
# Start UI server in foreground
gunicorn "app:create_ui_app()" --bind 0.0.0.0:5100 --workers 4 --access-logfile -
gunicorn "app:create_ui_app()" -c gunicorn_conf.py --bind 0.0.0.0:5100 --workers 4 --access-logfile -

3
gunicorn_conf.py Normal file
View File

@@ -0,0 +1,3 @@
import gunicorn
gunicorn.SERVER_SOFTWARE = 'MyFSIO'