Spaces:
Running
on
Zero
Running
on
Zero
test
Browse files- mysite/asgi.py +2 -2
mysite/asgi.py
CHANGED
@@ -1075,13 +1075,13 @@ with apps:
|
|
1075 |
with gr.Column(visible=False) as sidebar_right:
|
1076 |
gr.Markdown("SideBar Right")
|
1077 |
app.mount("/static", StaticFiles(directory="static", html=True), name="static")
|
1078 |
-
app = gr.mount_gradio_app(app, tabs, "/
|
1079 |
# テンプレートファイルが格納されているディレクトリを指定
|
1080 |
templates = Jinja2Templates(directory="static")
|
1081 |
|
1082 |
|
1083 |
# demo4.launch()
|
1084 |
-
@app.get("/")
|
1085 |
def get_some_page(request: Request):
|
1086 |
# テンプレートを使用してHTMLを生成し、返す
|
1087 |
return templates.TemplateResponse("index.html", {"request": request})
|
|
|
1075 |
with gr.Column(visible=False) as sidebar_right:
|
1076 |
gr.Markdown("SideBar Right")
|
1077 |
app.mount("/static", StaticFiles(directory="static", html=True), name="static")
|
1078 |
+
app = gr.mount_gradio_app(app, tabs, "/") # , gradio_api_url="http://localhost:7860/")
|
1079 |
# テンプレートファイルが格納されているディレクトリを指定
|
1080 |
templates = Jinja2Templates(directory="static")
|
1081 |
|
1082 |
|
1083 |
# demo4.launch()
|
1084 |
+
@app.get("/test")
|
1085 |
def get_some_page(request: Request):
|
1086 |
# テンプレートを使用してHTMLを生成し、返す
|
1087 |
return templates.TemplateResponse("index.html", {"request": request})
|