Files
template-backend-service/entry.sh
2025-01-31 13:28:18 +03:00

13 lines
203 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
poetry run python -m src.api_app