2026-05-25 19:23:07 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
set -e
|
2026-05-27 09:12:08 +02:00
|
|
|
|
|
|
|
|
until pg_isready -q -h postgres; do
|
|
|
|
|
echo "Waiting for postgres..."
|
|
|
|
|
sleep 2
|
|
|
|
|
done
|
|
|
|
|
|
2026-05-25 19:23:07 +02:00
|
|
|
alembic upgrade head
|
|
|
|
|
exec uvicorn corvid.main:app --host 0.0.0.0 --port 8080
|