Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
PoseyATX
/
BillWork
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
PoseyATX
commited on
Jan 27, 2023
Commit
24d1b2a
·
1 Parent(s):
2c090ff
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
CHANGED
Viewed
@@ -0,0 +1,5 @@
1
+
app.mount("/", StaticFiles(directory="static", html=True), name="static")
2
+
3
+
@app.get("/")
4
+
def index() -> FileResponse:
5
+
return FileResponse(path="/app/static/index.html", media_type="text/html")