8 lines
145 B
Bash
8 lines
145 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "${RUN_MIGRATIONS:-true}" = "true" ]; then
|
|
alembic upgrade head
|
|
fi
|
|
exec uvicorn app.main:app --host 0.0.0.0 --port 8000
|