Update app.py
Browse files
app.py
CHANGED
@@ -20,3 +20,6 @@ iface.launch(share=False)
|
|
20 |
# Set up Ngrok tunnel to create a public URL
|
21 |
ngrok_process = subprocess.Popen(['ngrok', 'http', '7860'])
|
22 |
|
|
|
|
|
|
|
|
20 |
# Set up Ngrok tunnel to create a public URL
|
21 |
ngrok_process = subprocess.Popen(['ngrok', 'http', '7860'])
|
22 |
|
23 |
+
# Display the Ngrok tunnel URL in the output
|
24 |
+
ngrok_url = "Ngrok tunnel URL: https://dashboard.ngrok.com/status/tunnels"
|
25 |
+
print(ngrok_url)
|