deploy: move backend host port to 18000 to avoid 8000 conflict
Some checks failed
Deploy to Production / deploy (push) Failing after 5m10s

This commit is contained in:
codex
2026-03-11 17:41:22 +08:00
parent 2fe5a7f54e
commit 00469941dd
2 changed files with 2 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ jobs:
run: |
echo "Waiting for backend to be healthy..."
for i in $(seq 1 30); do
if curl -sf http://127.0.0.1:8000/api/v1/utils/health-check/ > /dev/null 2>&1; then
if curl -sf http://127.0.0.1:18000/api/v1/utils/health-check/ > /dev/null 2>&1; then
echo "✅ Backend is healthy!"
exit 0
fi