Files
2026-05-16 22:25:48 +08:00

10 lines
306 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env bash
# 前台调试:直接 uvicorn(无守护)。生产环境请用 PM2pm2 start deploy/ecosystem.config.cjs
set -euo pipefail
PROJECT_DIR="${1:-/root/onchain_scout_gate}"
cd "$PROJECT_DIR"
source .venv/bin/activate
exec uvicorn app.main:app --host 0.0.0.0 --port 8088 --workers 1