fix: point alembic to shared_lib/alembic.ini in entrypoint
Some checks failed
Build and Deploy / build-and-deploy (push) Has been cancelled

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
giles
2026-02-10 00:21:00 +00:00
parent f367aa584f
commit 1bf49c15d3

View File

@@ -13,7 +13,7 @@ fi
# Run DB migrations only if RUN_MIGRATIONS=true (blog service only)
if [[ "${RUN_MIGRATIONS:-}" == "true" ]]; then
echo "Running Alembic migrations..."
alembic upgrade head
alembic -c shared_lib/alembic.ini upgrade head
fi
# Clear Redis page cache on deploy