7 lines
81 B
Bash
7 lines
81 B
Bash
#!/usr/bin/env sh
|
|
set -eu
|
|
|
|
alembic upgrade head
|
|
python -m app.db.seed
|
|
exec "$@"
|
|
|