19aeb2ba04
CI / Lint (push) Successful in 3m4s
CI / Typecheck (push) Successful in 3m6s
CI / Architecture Guardrails (push) Successful in 3m8s
CI / Assistant Split Regression (push) Successful in 3m48s
CI / Build (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
CI / Fresh-Linux Docker Deploy (push) Has been cancelled
CI / Release Images (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
rename(phase 3): compose/DB/infra + stray code refs capakraken → nexus (#62) Co-authored-by: Hartmut Nörenberg <hn@hartmut-noerenberg.com> Co-committed-by: Hartmut Nörenberg <hn@hartmut-noerenberg.com>
54 lines
1.6 KiB
Bash
Executable File
54 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")/.."
|
|
|
|
APP_PORT="${APP_PORT:-3100}"
|
|
APP_CONTAINER="${APP_CONTAINER:-$(docker compose --profile full ps -q app 2>/dev/null | head -1)}"
|
|
|
|
echo "Starting CapaKraken..."
|
|
|
|
# 1. Start Docker services
|
|
echo " Starting PostgreSQL + Redis..."
|
|
docker compose up -d postgres redis
|
|
sleep 2
|
|
|
|
# 2. Wait for PostgreSQL to be healthy
|
|
echo " Waiting for PostgreSQL..."
|
|
for i in {1..30}; do
|
|
if docker compose exec -T postgres pg_isready -U nexus -d nexus -q 2>/dev/null; then
|
|
break
|
|
fi
|
|
sleep 1
|
|
done
|
|
|
|
# 3. Start the web app in Docker for a stable lifecycle
|
|
echo " Starting app container on port ${APP_PORT}..."
|
|
docker compose --profile full up -d app
|
|
|
|
# Resolve container name after start (docker compose generates it from project dir + service)
|
|
APP_CONTAINER="$(docker compose --profile full ps -q app 2>/dev/null | head -1)"
|
|
|
|
# 4. Wait for server to be ready
|
|
# Allow up to 90s: prisma generate + migrate deploy + next dev compilation
|
|
echo " Waiting for server (up to 90s)..."
|
|
for i in {1..90}; do
|
|
if curl -sf "http://localhost:${APP_PORT}/api/health" > /dev/null 2>&1; then
|
|
echo ""
|
|
echo "CapaKraken is running!"
|
|
curl -s "http://localhost:${APP_PORT}/api/ready" | python3 -m json.tool 2>/dev/null || curl -s "http://localhost:${APP_PORT}/api/ready"
|
|
echo ""
|
|
echo " URL: http://localhost:${APP_PORT}"
|
|
echo " Logs: docker logs -f ${APP_CONTAINER}"
|
|
exit 0
|
|
fi
|
|
# Print progress every 10s
|
|
if (( i % 10 == 0 )); then
|
|
echo " Still waiting... (${i}s)"
|
|
fi
|
|
sleep 1
|
|
done
|
|
|
|
echo "ERROR: Server failed to start within 90 seconds"
|
|
echo "Check logs: docker logs --tail 100 ${APP_CONTAINER}"
|
|
exit 1
|