theoracle commited on
Commit
05b4f94
·
1 Parent(s): a1c101c

Fix step error handling and wire up error_box

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -117,4 +117,8 @@ with gr.Blocks() as demo:
117
  event.then(lambda: gr.update(interactive=True), None, inpaint_btn)
118
 
119
  # Launch in debug mode so exceptions & prints go to your terminal/logs
120
- demo.launch(debug=True)
 
 
 
 
 
117
  event.then(lambda: gr.update(interactive=True), None, inpaint_btn)
118
 
119
  # Launch in debug mode so exceptions & prints go to your terminal/logs
120
+ demo.launch(
121
+ server_name="0.0.0.0",
122
+ server_port=7865,
123
+ debug=True
124
+ )