Spaces:
Paused
Paused
File size: 970 Bytes
f66ecbf bab2595 249c88f bab2595 9dd8848 249c88f bab2595 249c88f f66ecbf 976ac39 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
import uvicorn
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from svc.router import router
import asyncio
import sys
# Disable uvloop by setting default asyncio policy
if sys.platform == "win32":
# If running on Windows, you can skip applying the loop policy
pass
else:
asyncio.set_event_loop_policy(asyncio.DefaultEventLoopPolicy())
app = FastAPI(
title="Resume Generator API",
description="API for converting audio/text to structured resume with PDF generation",
version="1.0.0"
)
# Add CORS middleware
app.add_middleware(
CORSMiddleware,
allow_origins=["*"], # Modify this in production
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Include our router
app.include_router(router, prefix="/api")
@app.get("/")
async def health_check():
return {"status": "healthy"}
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8080, loop="asyncio") |