We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd5284f commit 0abd344Copy full SHA for 0abd344
1 file changed
backend/entrypoint.sh
@@ -1,11 +1,7 @@
1
#!/bin/sh
2
3
-echo "=== ENTRYPOINT v5 ===" >&2
+echo "=== STARTING UVICORN DIRECTLY ===" >&2
4
echo "PORT=${PORT}" >&2
5
6
-echo "Running migrations..." >&2
7
-alembic upgrade head 2>&1
8
-echo "Migration exit code: $?" >&2
9
-
10
-echo "Starting uvicorn..." >&2
+# Skip alembic for now - just start server
11
exec uvicorn app.main:app --host 0.0.0.0 --port ${PORT:-8000}
0 commit comments