13 lines
203 B
Bash
Executable File
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
|