cbensimon's picture
cbensimon HF Staff
Create new file
15dec8f
raw
history blame
299 Bytes
import uvicorn
from fastapi import FastAPI
from fastapi.responses import RedirectResponse
app = FastAPI()
@app.get('/')
def redirect():
return RedirectResponse('/home')
@app.get('/home')
def home():
return 'Hello world!'
uvicorn.run("app:app", host="0.0.0.0", port=7860, log_level="info")