Files
template-backend-service/entry.sh
2024-12-16 10:26:11 +03:00

13 lines
192 B
Bash
Executable File

#!/bin/sh
set -e
# Apply migrations
alembic upgrade head
# For apply migrations for specific scheme
# alembic --name specific_scheme upgrade head
# Start application
python -m src.api_app