Files

10 lines
238 B
Bash
Raw Permalink Normal View History

2026-03-31 14:47:29 +07:00
#!/bin/sh
# Docker entrypoint: wait for Postgres, run migrations, then start the app.
set -e
echo "⏳ Running Alembic migrations..."
alembic upgrade head
echo "🚀 Starting FastAPI..."
2026-04-02 10:33:05 +07:00
exec uvicorn main:app --host 0.0.0.0 --port 8001