log-center/run.sh
zyc 637c479818
All checks were successful
Build and Deploy Log Center / build-and-deploy (push) Successful in 1m30s
feat: initial log center with k8s deployment
2026-01-30 11:49:47 +08:00

5 lines
149 B
Bash
Executable File

#!/bin/bash
export PYTHONPATH=$PYTHONPATH:$(pwd)
echo "Starting Log Center on port 8002..."
uvicorn app.main:app --host 0.0.0.0 --port 8002 --reload