We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a264de commit 8cc5a97Copy full SHA for 8cc5a97
1 file changed
src/e3sm_quickview/app.py
@@ -122,7 +122,13 @@ def _tauri_ready(self, **_):
122
"/index.html?ui=main&reconnect=auto\n\n".encode(),
123
)
124
else:
125
+ base_url = "http://localhost"
126
os.write(1, f"tauri-server-port={self.server.port}\n".encode())
127
+ os.write(
128
+ 1,
129
+ "\nUse URL below to connect to the application:\n\n => "
130
+ f"{base_url}:{self.server.port}/\n\n".encode(),
131
+ )
132
133
@life_cycle.client_connected
134
def _tauri_show(self, **_):
0 commit comments