Spaces:
Sleeping
Sleeping
File size: 528 Bytes
cf07078 |
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 |
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
import uvicorn
app = FastAPI()
# Add CORS middleware to allow requests from any origin
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/")
async def read_root():
return {"Hello": "World"}
# Function to run the app in Hugging Face Spaces
def run():
uvicorn.run(app, host="0.0.0.0", port=7860)
if __name__ == "__main__":
run()
|