create-skybridge 0.0.0-dev.df414f7 → 0.0.0-dev.df55436
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
|
@@ -34,15 +34,6 @@ app.listen(3000, (error) => {
|
|
|
34
34
|
console.error("Failed to start server:", error);
|
|
35
35
|
process.exit(1);
|
|
36
36
|
}
|
|
37
|
-
|
|
38
|
-
console.log(`Server listening on port 3000 - ${env}`);
|
|
39
|
-
console.log(
|
|
40
|
-
"Make your local server accessible with 'ngrok http 3000' and connect to ChatGPT with URL https://xxxxxx.ngrok-free.app/mcp",
|
|
41
|
-
);
|
|
42
|
-
|
|
43
|
-
if (env !== "production") {
|
|
44
|
-
console.log("Devtools available at http://localhost:3000");
|
|
45
|
-
}
|
|
46
37
|
});
|
|
47
38
|
|
|
48
39
|
process.on("SIGINT", async () => {
|