Some checks failed
Profile Linker Docker Build / Build and push Docker image (push) Failing after 3s
- Integrated Cloudflare R2 for template storage and converted file management - Added Google Gemini AI for resume parsing and HTML generation - Created backend API endpoints for templates, conversion, and history - Refactored frontend to use real API instead of mock data - Fixed Docker networking issues (IPv6/IPv4) for R2 connectivity - Added resumeService.ts for frontend API integration - Updated Vite configuration for proper asset serving in Docker - Successfully tested with 13 templates from R2 bucket
8 lines
258 B
Python
8 lines
258 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.endpoints import people, resumes
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(people.router, prefix="/people", tags=["people"])
|
|
api_router.include_router(resumes.router, prefix="/resumes", tags=["resumes"])
|