Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Arkany
/
TestSpace_t5
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Arkany
commited on
Sep 13, 2023
Commit
e7b12b3
·
1 Parent(s):
a4fdf85
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
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")