mirror of
https://github.com/SrIzan10/starters.git
synced 2026-05-01 11:05:16 +00:00
* feat: add example for starlette.io * feat: link additional documentation * feat: dev hot reload docker command
13 lines
302 B
Python
13 lines
302 B
Python
from starlette.applications import Starlette
|
|
from starlette.responses import JSONResponse
|
|
from starlette.routing import Route
|
|
|
|
|
|
async def homepage(request):
|
|
return JSONResponse({"Choo Choo": "Welcome to your Starlette app 🚅"})
|
|
|
|
|
|
app = Starlette(debug=True, routes=[
|
|
Route('/', homepage),
|
|
])
|