- FastAPI + SQLAlchemy async + Alembic + Postgres backend - Auth: JWT access + rotating refresh tokens, argon2, roles, audit log - React 19 + Vite frontend: login page, protected route, auth context - Docker Compose: postgres, redis, migrate, api, worker (placeholder), frontend/nginx Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
19 lines
557 B
Python
19 lines
557 B
Python
"""Реестр моделей.
|
|
|
|
Alembic автогенерирует миграции по `Base.metadata`, поэтому каждая модель
|
|
обязана быть импортирована здесь — иначе её таблица молча не попадёт в миграцию.
|
|
"""
|
|
|
|
from app.db.base import Base
|
|
from app.db.models.audit import AuditAction, AuditLog
|
|
from app.db.models.user import RefreshToken, User, UserRole
|
|
|
|
__all__ = [
|
|
"AuditAction",
|
|
"AuditLog",
|
|
"Base",
|
|
"RefreshToken",
|
|
"User",
|
|
"UserRole",
|
|
]
|