Initial commit: SIBU 2.0 MISSION

This commit is contained in:
2026-02-21 09:53:31 -05:00
commit 0c7aa53c8b
400 changed files with 67708 additions and 0 deletions

7
backend/init_db.py Normal file
View File

@ -0,0 +1,7 @@
"""Script to initialize database and create all tables."""
from app.core.database import init_db
if __name__ == "__main__":
print("Creating database tables...")
init_db()
print("Database tables created successfully!")