Spaces:
Running
Running
File size: 372 Bytes
09801ca | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | """
Database Initialization Script — Delegates to app.database.seed
"""
import asyncio
import os
import sys
# Add backend directory to Python path
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from app.database.seed import run_seed
if __name__ == "__main__":
print("🚀 Initializing DataVision production database...")
asyncio.run(run_seed())
|