mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-10 03:32:26 +08:00
9 lines
121 B
Bash
9 lines
121 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
|
||
|
|
echo "Running database migrations..."
|
||
|
|
alembic upgrade head
|
||
|
|
|
||
|
|
echo "Starting application..."
|
||
|
|
exec "$@"
|