Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
radames/gradio-fastapi-static-server
m7n
/
gradio-fastapi-static-server_testing
like
0
Build error
App
Files
Files
Community
m7n
commited on
Sep 28, 2024
Commit
7c5f9b0
·
verified
·
1 Parent(s):
7bf4167
added static-setup
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
CHANGED
Viewed
@@ -7,6 +7,11 @@ from datetime import datetime
7
import sys
8
9
10
# create a FastAPI app
11
app = FastAPI()
12
7
import sys
8
9
10
+
11
+
gr.set_static_paths(paths=["static/"])
12
+
13
+
14
+
15
# create a FastAPI app
16
app = FastAPI()
17