Commit
Β·
a0121b0
1
Parent(s):
ecfa9d2
add server config back
Browse files
app.py
CHANGED
@@ -17,5 +17,5 @@ if __name__ == "__main__":
|
|
17 |
print("Starting the Gradio app...", flush=True)
|
18 |
demo = create_ui()
|
19 |
print("Gradio app created successfully.", flush=True)
|
20 |
-
demo.queue().launch()
|
21 |
print("Gradio app launched successfully.", flush=True)
|
|
|
17 |
print("Starting the Gradio app...", flush=True)
|
18 |
demo = create_ui()
|
19 |
print("Gradio app created successfully.", flush=True)
|
20 |
+
demo.queue().launch(server_name="0.0.0.0", server_port=7860, share=True, debug=True)
|
21 |
print("Gradio app launched successfully.", flush=True)
|