75 lines
2.0 KiB
Bash
75 lines
2.0 KiB
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
ROOT_DIR="/host/var/lib/xiaoxia-saas-staging/repo"
|
|
COMPOSE_DIR="$ROOT_DIR/infra/docker"
|
|
ENV_FILE="/host/var/lib/xiaoxia-saas-staging/.env"
|
|
|
|
ensure_container_running() {
|
|
name="$1"
|
|
if ! docker inspect "$name" >/dev/null 2>&1; then
|
|
echo "❌ Required infrastructure container not found: $name"
|
|
echo " Run infra/docker/infra.yml first before deploying applications."
|
|
exit 1
|
|
fi
|
|
|
|
state="$(docker inspect -f '{{.State.Status}}' "$name")"
|
|
if [ "$state" != "running" ]; then
|
|
echo "❌ Required infrastructure container is not running: $name ($state)"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
cd "$ROOT_DIR"
|
|
cp "$ENV_FILE" "$ROOT_DIR/.env"
|
|
mkdir -p "$ROOT_DIR/apps/web/public" /host/var/lib/xiaoxia-saas-staging/generated
|
|
[ -f "$ROOT_DIR/apps/web/public/.keep" ] || printf 'placeholder' > "$ROOT_DIR/apps/web/public/.keep"
|
|
|
|
ensure_container_running xiaoxia-postgres
|
|
ensure_container_running xiaoxia-redis
|
|
|
|
cd "$COMPOSE_DIR"
|
|
WEB_PORT="${WEB_PORT:-3001}"
|
|
export WEB_PORT
|
|
export DOCKER_BUILDKIT=0
|
|
export COMPOSE_DOCKER_CLI_BUILD=0
|
|
|
|
docker compose build --pull=false api
|
|
docker compose build --pull=false worker
|
|
docker compose run --rm --no-deps api sh -c '
|
|
cd /app
|
|
set +e
|
|
python - <<"PY"
|
|
import os
|
|
from sqlalchemy import create_engine, text
|
|
|
|
url = os.environ["DATABASE_URL"]
|
|
engine = create_engine(url)
|
|
with engine.begin() as conn:
|
|
has_version = conn.execute(
|
|
text("SELECT to_regclass(:table_name)"),
|
|
{"table_name": "public.alembic_version"},
|
|
).scalar() is not None
|
|
has_tables = conn.execute(
|
|
text(
|
|
"SELECT COUNT(*) FROM pg_tables "
|
|
"WHERE schemaname = :schema_name AND tablename != :version_table"
|
|
),
|
|
{"schema_name": "public", "version_table": "alembic_version"},
|
|
).scalar()
|
|
if has_tables and not has_version:
|
|
raise SystemExit(42)
|
|
PY
|
|
status=$?
|
|
set -e
|
|
if [ "$status" -eq 0 ]; then
|
|
alembic upgrade head
|
|
elif [ "$status" -eq 42 ]; then
|
|
alembic stamp head && alembic upgrade head
|
|
else
|
|
exit "$status"
|
|
fi
|
|
'
|
|
docker compose up -d api worker web
|
|
docker compose ps
|