Automated Action 980400187c Create FastAPI backend for communications agency website
- 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
2025-06-10 11:00:53 +00:00

8 lines
403 B
Python

from app.crud.crud_contact import contact as contact
from app.crud.crud_project import project as project
from app.crud.crud_service import service as service
from app.crud.crud_settings import settings as settings
from app.crud.crud_team_member import team_member as team_member
from app.crud.crud_user import user as user
__all__ = ["contact", "project", "service", "settings", "team_member", "user"]