's'
This commit is contained in:
14
web.sh
14
web.sh
@@ -1,2 +1,12 @@
|
||||
# Ubuntu:本分支控制台入口(与无「2」分支的 web / youtube.py 等区分)
|
||||
uvicorn web2:app --host 0.0.0.0 --port 8001 --reload
|
||||
#!/usr/bin/env bash
|
||||
# 兼容入口:默认一键开发(API + Next)。仅后端: WEB_STACK=api ./web.sh
|
||||
# 生产部署请用: ./start.sh
|
||||
set -euo pipefail
|
||||
cd "$(dirname "$0")"
|
||||
export PORT="${PORT:-8001}"
|
||||
PY=python3
|
||||
command -v python3 >/dev/null 2>&1 || PY=python
|
||||
if [[ "${WEB_STACK:-}" == "api" ]]; then
|
||||
exec "$PY" scripts/launch.py --api-only --host 0.0.0.0 --port "$PORT" --reload
|
||||
fi
|
||||
exec "$PY" scripts/launch.py --dev --port "$PORT"
|
||||
|
||||
Reference in New Issue
Block a user