File size: 232 Bytes
3826e2b
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from fasthtml_hf import setup_hf_backup
from fasthtml.common import *

app,rt = fast_app()

@rt('/')
def get(): return Div(P('Hello World!'), hx_get="/change")

setup_hf_backup(app)
uvicorn.run("main:app", host='0.0.0.0', port=8001)