@solongate/proxy 0.1.11 → 0.1.12
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/create.js +9 -1
- package/dist/index.js +9 -1
- package/package.json +1 -1
package/dist/create.js
CHANGED
|
@@ -213,7 +213,7 @@ console.log('${name} is running');
|
|
|
213
213
|
command: "node",
|
|
214
214
|
args: ["dist/index.js"],
|
|
215
215
|
env: {
|
|
216
|
-
SOLONGATE_API_KEY: "
|
|
216
|
+
SOLONGATE_API_KEY: "sg_test_YOUR_KEY_HERE"
|
|
217
217
|
}
|
|
218
218
|
}
|
|
219
219
|
}
|
|
@@ -278,6 +278,14 @@ async function main() {
|
|
|
278
278
|
bEmpty();
|
|
279
279
|
bLine(`${c.dim}https://dashboard.solongate.com/api-keys/${c.reset}`);
|
|
280
280
|
bEmpty();
|
|
281
|
+
log(` ${c.dim}\u251C${hr}\u2524${c.reset}`);
|
|
282
|
+
bEmpty();
|
|
283
|
+
bLine(`${c.yellow}Use with Claude Code:${c.reset}`);
|
|
284
|
+
bEmpty();
|
|
285
|
+
bLine(` ${c.dim}1.${c.reset} Open the project folder in Claude Code`);
|
|
286
|
+
bLine(` ${c.dim}2.${c.reset} .mcp.json is auto-detected on startup`);
|
|
287
|
+
bLine(` ${c.dim}3.${c.reset} Restart Claude Code if already open`);
|
|
288
|
+
bEmpty();
|
|
281
289
|
log(` ${c.dim}\u2570${hr}\u256F${c.reset}`);
|
|
282
290
|
log("");
|
|
283
291
|
}
|
package/dist/index.js
CHANGED
|
@@ -874,7 +874,7 @@ console.log('${name} is running');
|
|
|
874
874
|
command: "node",
|
|
875
875
|
args: ["dist/index.js"],
|
|
876
876
|
env: {
|
|
877
|
-
SOLONGATE_API_KEY: "
|
|
877
|
+
SOLONGATE_API_KEY: "sg_test_YOUR_KEY_HERE"
|
|
878
878
|
}
|
|
879
879
|
}
|
|
880
880
|
}
|
|
@@ -939,6 +939,14 @@ async function main3() {
|
|
|
939
939
|
bEmpty();
|
|
940
940
|
bLine(`${c2.dim}https://dashboard.solongate.com/api-keys/${c2.reset}`);
|
|
941
941
|
bEmpty();
|
|
942
|
+
log3(` ${c2.dim}\u251C${hr}\u2524${c2.reset}`);
|
|
943
|
+
bEmpty();
|
|
944
|
+
bLine(`${c2.yellow}Use with Claude Code:${c2.reset}`);
|
|
945
|
+
bEmpty();
|
|
946
|
+
bLine(` ${c2.dim}1.${c2.reset} Open the project folder in Claude Code`);
|
|
947
|
+
bLine(` ${c2.dim}2.${c2.reset} .mcp.json is auto-detected on startup`);
|
|
948
|
+
bLine(` ${c2.dim}3.${c2.reset} Restart Claude Code if already open`);
|
|
949
|
+
bEmpty();
|
|
942
950
|
log3(` ${c2.dim}\u2570${hr}\u256F${c2.reset}`);
|
|
943
951
|
log3("");
|
|
944
952
|
}
|
package/package.json
CHANGED