This repository has been archived on 2026-09-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
theme-song-booth/init_db.py
2026-07-31 19:47:52 +00:00

12 lines
271 B
Python

import os
import sys
# Ensure project root is importable
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from app import app
from models import init_db
with app.app_context():
init_db()
print(f"Database initialized at {app.config['DATABASE']}")