multimodalart HF staff commited on
Commit
6a94190
1 Parent(s): 6a39a28

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -104,6 +104,6 @@ with gr.Blocks().queue() as demo:
104
  cache_examples=True,
105
  )
106
  demo.launch()
107
- #app.mount("/static", StaticFiles(directory="static", html=True), name="static")
108
- #app = gr.mount_gradio_app(app, demo, "/", gradio_api_url="http://localhost:7860/")
109
- #uvicorn.run(app, host="0.0.0.0", port=7860)
 
104
  cache_examples=True,
105
  )
106
  demo.launch()
107
+ app.mount("/static", StaticFiles(directory="static", html=True), name="static")
108
+ app = gr.mount_gradio_app(app, demo, "/")
109
+ uvicorn.run(app, host="0.0.0.0", port=7860)