
- Set up project structure with FastAPI and SQLite - Implement user authentication with JWT - Create models for learning content (subjects, lessons, quizzes) - Add progress tracking and gamification features - Implement comprehensive API documentation - Add error handling and validation - Set up proper logging and health check endpoint
10 lines
418 B
Python
10 lines
418 B
Python
# Import all the models, so that Base has them before being
|
|
# imported by Alembic
|
|
from __future__ import annotations
|
|
|
|
from app.db.base_class import Base # noqa
|
|
from app.models.achievement import Achievement, UserAchievement # noqa
|
|
from app.models.content import Answer, Lesson, Question, Quiz, Subject # noqa
|
|
from app.models.progress import UserAnswer, UserProgress # noqa
|
|
from app.models.user import User # noqa
|