Wauplin's picture
Wauplin HF Staff
backend boilerplate
0b85fad verified
raw
history blame
376 Bytes
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
app = FastAPI()
# Lax on CORS headers (Spaces take care of security issues)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/api/health")
async def health():
return {"status": "ok"}