17 lines
515 B
Bash
17 lines
515 B
Bash
#!/usr/bin/env bash
|
||
# 兼容入口:默认一键开发(API + Next)。仅后端: WEB_STACK=api ./web.sh
|
||
# 生产部署请用: ./start.sh
|
||
set -euo pipefail
|
||
cd "$(dirname "$0")"
|
||
export PORT="${PORT:-8001}"
|
||
if [[ -x ".venv/bin/python" ]]; then
|
||
PY=".venv/bin/python"
|
||
else
|
||
PY=python3
|
||
command -v python3 >/dev/null 2>&1 || PY=python
|
||
fi
|
||
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"
|