
- Set up project structure with FastAPI application - Implement SQLAlchemy models for users, services, projects, team members, contacts - Create API endpoints for website functionality - Implement JWT authentication system with user roles - Add file upload functionality for media - Configure CORS and health check endpoints - Add database migrations with Alembic - Create comprehensive README with setup instructions
8 lines
382 B
Python
8 lines
382 B
Python
from app.models.contact import Contact as Contact
|
|
from app.models.project import Project as Project
|
|
from app.models.service import Service as Service
|
|
from app.models.settings import Settings as Settings
|
|
from app.models.team_member import TeamMember as TeamMember
|
|
from app.models.user import User as User
|
|
|
|
__all__ = ["Contact", "Project", "Service", "Settings", "TeamMember", "User"] |