Files
full-stack-fastapi-template/{{cookiecutter.project_slug}}/backend/app/prestart.sh
2019-02-23 18:44:29 +04:00

11 lines
178 B
Bash

#! /usr/bin/env bash
# Let the DB start
python /app/app/backend_pre_start.py
# Run migrations
alembic upgrade head
# Create initial data in DB
python /app/app/initial_data.py