ps1811 commited on
Commit
ace0bab
·
verified ·
1 Parent(s): 510f7e2

Updated app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -102,11 +102,17 @@
102
 
103
  # demo.launch()
104
 
 
 
105
  import gradio as gr
106
 
107
  demo = gr.Blocks()
108
 
109
  with demo:
110
- gr.Markdown("Hello")
 
 
 
 
111
 
112
- demo.launch()
 
102
 
103
  # demo.launch()
104
 
105
+ print("STARTING APP")
106
+
107
  import gradio as gr
108
 
109
  demo = gr.Blocks()
110
 
111
  with demo:
112
+ gr.Markdown("HELLO WORLD")
113
+
114
+ print("BEFORE LAUNCH")
115
+
116
+ demo.launch(server_name="0.0.0.0", server_port=7860)
117
 
118
+ print("AFTER LAUNCH")