12 lines
185 B
Bash
12 lines
185 B
Bash
|
|
#!/usr/bin/env sh
|
||
|
|
set -eu
|
||
|
|
|
||
|
|
cd /app
|
||
|
|
|
||
|
|
alembic upgrade head
|
||
|
|
|
||
|
|
exec uvicorn quartermaster.main:app \
|
||
|
|
--host 0.0.0.0 \
|
||
|
|
--port 8000 \
|
||
|
|
--log-config src/quartermaster/logconfig.json
|