mirror of
https://github.com/kevin-DL/full-stack-fastapi-postgresql.git
synced 2026-01-12 10:15:12 +00:00
11 lines
178 B
Bash
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
|