gitarsenal-cli 1.1.5 → 1.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitarsenal-cli",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "description": "CLI tool for creating Modal sandboxes with GitHub repositories",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -46,7 +46,7 @@ The Modal proxy service allows users to access Modal services (like GPU-accelera
46
46
 
47
47
  This will provide you with a public URL that you can share with users.
48
48
 
49
- Current ngrok URL: `https://e74889c63199.ngrok-free.app`
49
+ Current ngrok URL: `https://cf487e07fd45.ngrok-free.app`
50
50
 
51
51
  ## Client-Side Setup
52
52
 
@@ -56,7 +56,7 @@ The Modal proxy service allows users to access Modal services (like GPU-accelera
56
56
  ```
57
57
 
58
58
  You'll be prompted to enter:
59
- - The proxy URL (the default is now set to `https://e74889c63199.ngrok-free.app`)
59
+ - The proxy URL (the default is now set to `https://cf487e07fd45.ngrok-free.app`)
60
60
  - Your API key
61
61
 
62
62
  2. **Check proxy service status**:
@@ -74,7 +74,7 @@ def check_proxy_config():
74
74
  print("⚠️ Modal proxy not configured. Setting up with default values...")
75
75
 
76
76
  # Set default proxy URL to the ngrok URL
77
- default_url = "https://e74889c63199.ngrok-free.app"
77
+ default_url = "https://cf487e07fd45.ngrok-free.app"
78
78
 
79
79
  # Update configuration with default URL
80
80
  config["proxy_url"] = default_url
@@ -32,7 +32,7 @@ class GitArsenalProxyClient:
32
32
 
33
33
  # If still no URL, use default
34
34
  if not self.base_url:
35
- self.base_url = "https://e74889c63199.ngrok-free.app" # Default to ngrok URL
35
+ self.base_url = "https://cf487e07fd45.ngrok-free.app" # Default to new ngrok URL
36
36
 
37
37
  # Warn if no API key
38
38
  if not self.api_key: