mirror of
https://github.com/reconurge/flowsint.git
synced 2026-03-11 17:34:31 -05:00
9 lines
119 B
Bash
Executable File
9 lines
119 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Running database migrations..."
|
|
alembic upgrade head
|
|
|
|
echo "Starting application..."
|
|
exec "$@"
|