
- Setup project structure and basic FastAPI application - Define database models for users, profiles, matches, and messages - Set up database connection and create Alembic migrations - Implement user authentication and registration endpoints - Create API endpoints for profile management, matches, and messaging - Add filtering and search functionality for tech profiles - Setup environment variable configuration - Create README with project information and setup instructions
13 lines
697 B
Python
13 lines
697 B
Python
from app.schemas.user import User, UserCreate, UserUpdate, UserInDB
|
|
from app.schemas.profile import Profile, ProfileCreate, ProfileUpdate, ProfileInDB, GenderEnum
|
|
from app.schemas.match import Match, MatchCreate, MatchUpdate, MatchInDB, MatchStatusEnum
|
|
from app.schemas.message import Message, MessageCreate, MessageUpdate, MessageInDB
|
|
from app.schemas.token import Token, TokenPayload
|
|
|
|
__all__ = [
|
|
"User", "UserCreate", "UserUpdate", "UserInDB",
|
|
"Profile", "ProfileCreate", "ProfileUpdate", "ProfileInDB", "GenderEnum",
|
|
"Match", "MatchCreate", "MatchUpdate", "MatchInDB", "MatchStatusEnum",
|
|
"Message", "MessageCreate", "MessageUpdate", "MessageInDB",
|
|
"Token", "TokenPayload"
|
|
] |