946f16a633
Introduce a full Vite/React UI for exams, auth, materials, images, generation, and export. Adapt backend for Sinbad2IA chat API, bcrypt passwords, CORS on port 5173, and schema migrations.
10 lines
250 B
Python
10 lines
250 B
Python
from app.db.base import Base
|
|
from app.db.migrations import run_migrations
|
|
from app.db.session import engine
|
|
from app.models import exam, user # noqa: F401
|
|
|
|
|
|
def init_db() -> None:
|
|
Base.metadata.create_all(bind=engine)
|
|
run_migrations(engine)
|