freddyaboulton HF staff commited on
Commit
ccf4c48
1 Parent(s): 78a3084
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -23,6 +23,6 @@ with block:
23
 
24
  gradio_app = gr.routes.App.create_app(block)
25
 
26
- app = gr.mount_gradio_app(app, gradio_app, "localhost", "7869", "/")
27
- app.mount("/static", StaticFiles(directory="static", html=True), name="static")
28
  uvicorn.run(app, host='0.0.0.0', port=7860)
 
23
 
24
  gradio_app = gr.routes.App.create_app(block)
25
 
26
+ app = gr.mount_gradio_app(app, gradio_app, "/")
27
+ app.mount("/images", StaticFiles(directory="static", html=True), name="static")
28
  uvicorn.run(app, host='0.0.0.0', port=7860)