Spaces:
Runtime error
Runtime error
erwold
commited on
Commit
·
9217369
1
Parent(s):
fb9dbfc
Initial Commit
Browse files
app.py
CHANGED
@@ -417,4 +417,8 @@ with gr.Blocks(
|
|
417 |
|
418 |
# Launch the app
|
419 |
if __name__ == "__main__":
|
420 |
-
demo.launch(
|
|
|
|
|
|
|
|
|
|
417 |
|
418 |
# Launch the app
|
419 |
if __name__ == "__main__":
|
420 |
+
demo.launch(
|
421 |
+
server_name="0.0.0.0", # Listen on all network interfaces
|
422 |
+
server_port=7860, # Use a specific port
|
423 |
+
share=False # Disable public URL sharing
|
424 |
+
)
|