Skip to content

Instantly share code, notes, and snippets.

@agusrichard
Created December 26, 2021 17:28
Show Gist options
  • Save agusrichard/1e5b81acf6e1f6a37752c814a72b48c2 to your computer and use it in GitHub Desktop.
Save agusrichard/1e5b81acf6e1f6a37752c814a72b48c2 to your computer and use it in GitHub Desktop.
import uvicorn
from fastapi import FastAPI
app = FastAPI()
@app.get('/')
def index():
return 'Hello World!'
if __name__ == '__main__':
uvicorn.run("app.main:app", host="0.0.0.0", port=5000, log_level="info", reload=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment