2019-02-09 19:42:36 +04:00
|
|
|
#! /usr/bin/env bash
|
|
|
|
|
|
|
|
# Let the DB start
|
2024-09-22 18:19:57 +02:00
|
|
|
python app/backend_pre_start.py
|
2019-02-23 18:44:29 +04:00
|
|
|
|
|
|
|
# Run migrations
|
|
|
|
alembic upgrade head
|
|
|
|
|
|
|
|
# Create initial data in DB
|
2024-09-22 18:19:57 +02:00
|
|
|
python app/initial_data.py
|