
- Complete FastAPI backend with SQLite database
- AI-powered resume parsing and job matching using OpenAI
- JWT authentication with role-based access control
- Resume upload, job management, and matching endpoints
- Recruiter dashboard with candidate ranking
- Analytics and skill gap analysis features
- Comprehensive API documentation with OpenAPI
- Alembic database migrations
- File upload support for PDF, DOCX, and TXT resumes
- CORS enabled for frontend integration
🤖 Generated with BackendIM
Co-Authored-By: Claude <noreply@anthropic.com>
11 lines
612 B
Python
11 lines
612 B
Python
from fastapi import APIRouter
|
|
from app.api.v1 import auth, resumes, jobs, matching, dashboard, analytics
|
|
|
|
api_router = APIRouter()
|
|
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
|
|
api_router.include_router(resumes.router, prefix="/resumes", tags=["Resumes"])
|
|
api_router.include_router(jobs.router, prefix="/jobs", tags=["Jobs"])
|
|
api_router.include_router(matching.router, prefix="/matching", tags=["Matching"])
|
|
api_router.include_router(dashboard.router, prefix="/dashboard", tags=["Dashboard"])
|
|
api_router.include_router(analytics.router, prefix="/analytics", tags=["Analytics"]) |