This commit is contained in:
Marsway 2026-02-04 00:25:14 +08:00
parent 12accd321a
commit 583854b8e8
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ set -euo pipefail
APP_MODULE=${APP_MODULE:-"app.main:app"}
HOST=${HOST:-"0.0.0.0"}
PORT=${PORT:-"2070"}
PORT=${PORT:-"12123"}
LOG_LEVEL=${LOG_LEVEL:-"info"}
exec uvicorn "$APP_MODULE" --host "$HOST" --port "$PORT" --log-level "$LOG_LEVEL"

View File

@ -3,7 +3,7 @@ set -euo pipefail
APP_MODULE=${APP_MODULE:-"app.main:app"}
HOST=${HOST:-"0.0.0.0"}
PORT=${PORT:-"2070"}
PORT=${PORT:-"12123"}
LOG_LEVEL=${LOG_LEVEL:-"debug"}
exec uvicorn "$APP_MODULE" --host "$HOST" --port "$PORT" --log-level "$LOG_LEVEL" --reload