@tameflare/cli 0.10.1 → 0.10.2
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/dist/commands/init.js +1 -1
- package/dist/index.js +1 -1
- package/dist/utils.js +1 -1
- package/package.json +1 -1
package/dist/commands/init.js
CHANGED
|
@@ -6,7 +6,7 @@ const fs_1 = require("fs");
|
|
|
6
6
|
const readline_1 = require("readline");
|
|
7
7
|
const utils_1 = require("../utils");
|
|
8
8
|
const login_1 = require("./login");
|
|
9
|
-
const PROXY_HOST = "
|
|
9
|
+
const PROXY_HOST = "proxy.tameflare.com";
|
|
10
10
|
function initCommand() {
|
|
11
11
|
const cmd = new commander_1.Command("init")
|
|
12
12
|
.description("Connect this directory to a TameFlare cloud gateway")
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ const program = new commander_1.Command();
|
|
|
12
12
|
program
|
|
13
13
|
.name("tf")
|
|
14
14
|
.description("TameFlare - Route AI agent traffic through a secure cloud gateway")
|
|
15
|
-
.version("0.10.
|
|
15
|
+
.version("0.10.2");
|
|
16
16
|
program.addCommand((0, login_1.loginCommand)());
|
|
17
17
|
program.addCommand((0, login_1.logoutCommand)());
|
|
18
18
|
program.addCommand((0, init_1.initCommand)());
|
package/dist/utils.js
CHANGED
|
@@ -30,7 +30,7 @@ function loadConfig() {
|
|
|
30
30
|
dashboard_url: get("url"),
|
|
31
31
|
gateway_id: get("gateway_id"),
|
|
32
32
|
gateway_token: get("gateway_token"),
|
|
33
|
-
proxy_host: get("host") || "
|
|
33
|
+
proxy_host: get("host") || "proxy.tameflare.com",
|
|
34
34
|
};
|
|
35
35
|
if (!cfg.gateway_id || !cfg.gateway_token)
|
|
36
36
|
return null;
|