Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Yong Sheng Tan committed Feb 10, 2024
1 parent 88d8154 commit 65040c6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
9 changes: 8 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
from fastapi import FastAPI
import uvicorn
from fastapi.responses import HTMLResponse
from fastapi.templating import Jinja2Templates
from fastapi import FastAPI, Request

app = FastAPI()

templates = Jinja2Templates(directory="templates")

@app.get("/")
async def root():
return {"message": "Hello World"}

@app.get("/hello/", response_class=HTMLResponse)
async def hello(request: Request):
return templates.TemplateResponse("hello.html", {"request": request})

if __name__=='__main__':
uvicorn.run('app.main:app', reload=True)
5 changes: 5 additions & 0 deletions app/templates/hello.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<html>
<body>
<h2>Hello World!</h2>
</body>
</html>

0 comments on commit 65040c6

Please sign in to comment.