erwold commited on
Commit
9217369
·
1 Parent(s): fb9dbfc

Initial Commit

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -417,4 +417,8 @@ with gr.Blocks(
417
 
418
  # Launch the app
419
  if __name__ == "__main__":
420
- demo.launch(share=True)
 
 
 
 
 
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
+ )