Update app.py
Browse files
app.py
CHANGED
@@ -98,4 +98,5 @@ input, textarea, .gr-textbox, .gr-video, .gr-audio { background-color: #111 !imp
|
|
98 |
|
99 |
# Launch
|
100 |
port = int(os.environ.get('PORT1', 7860))
|
101 |
-
iface.launch(share=True, server_port=port)
|
|
|
|
98 |
|
99 |
# Launch
|
100 |
port = int(os.environ.get('PORT1', 7860))
|
101 |
+
url = iface.launch(share=True, server_port=port)
|
102 |
+
print(f"Interface is live at: {url}")
|