Skip to content

Commit 0abd344

Browse files
committed
Skip alembic - test uvicorn only
1 parent bd5284f commit 0abd344

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

backend/entrypoint.sh

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
#!/bin/sh
22

3-
echo "=== ENTRYPOINT v5 ===" >&2
3+
echo "=== STARTING UVICORN DIRECTLY ===" >&2
44
echo "PORT=${PORT}" >&2
55

6-
echo "Running migrations..." >&2
7-
alembic upgrade head 2>&1
8-
echo "Migration exit code: $?" >&2
9-
10-
echo "Starting uvicorn..." >&2
6+
# Skip alembic for now - just start server
117
exec uvicorn app.main:app --host 0.0.0.0 --port ${PORT:-8000}

0 commit comments

Comments
 (0)