diff options
author | JamnedZ <zaguzinegor@gmail.com> | 2022-10-11 09:40:27 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-11 12:38:53 +0000 |
commit | 59925644480b6fd84f6bb84b4df7d4fbc6a0cce8 (patch) | |
tree | 2470d59fe2fcb319a916333f2a99aee936dd5699 /modules/ngrok.py | |
parent | 4e485b79238666ace2b270045f73a12e5ccc7af9 (diff) | |
download | stable-diffusion-webui-gfx803-59925644480b6fd84f6bb84b4df7d4fbc6a0cce8.tar.gz stable-diffusion-webui-gfx803-59925644480b6fd84f6bb84b4df7d4fbc6a0cce8.tar.bz2 stable-diffusion-webui-gfx803-59925644480b6fd84f6bb84b4df7d4fbc6a0cce8.zip |
Cleaned ngrok integration
Diffstat (limited to 'modules/ngrok.py')
-rw-r--r-- | modules/ngrok.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/ngrok.py b/modules/ngrok.py new file mode 100644 index 00000000..17e6976f --- /dev/null +++ b/modules/ngrok.py @@ -0,0 +1,15 @@ +from pyngrok import ngrok, conf, exception + + +def connect(token, port): + if token == None: + token = 'None' + conf.get_default().auth_token = token + try: + public_url = ngrok.connect(port).public_url + except exception.PyngrokNgrokError: + print(f'Invalid ngrok authtoken, ngrok connection aborted.\n' + f'Your token: {token}, get the right one on https://dashboard.ngrok.com/get-started/your-authtoken') + else: + print(f'ngrok connected to localhost:{port}! URL: {public_url}\n' + 'You can use this link after the launch is complete.')
\ No newline at end of file |