Spaces:
Sleeping
Sleeping
File size: 1,104 Bytes
4b4f221 | 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 | from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
# Create FastAPI app instance
app = FastAPI(
title="Todo API",
description="A secure, multi-user todo management API with JWT authentication",
version="1.0.0",
openapi_url="/api/openapi.json",
docs_url="/api/docs",
redoc_url="/api/redoc"
)
# Add CORS middleware with basic configuration to avoid importing settings
app.add_middleware(
CORSMiddleware,
allow_origins=["*"], # Allow all origins for testing
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
# Expose authorization header to allow frontend to access JWT tokens
expose_headers=["Authorization"]
)
@app.get("/")
def read_root():
return {"message": "Welcome to the Todo API"}
@app.get("/health")
def health_check():
return {"status": "healthy", "service": "todo-backend"}
# Basic task endpoints without complex models
@app.get("/api/v1/tasks")
def get_tasks():
return {"tasks": []}
@app.post("/api/v1/tasks")
def create_task():
return {"message": "Task created successfully"} |