We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d59e15 commit 909c747Copy full SHA for 909c747
1 file changed
src/tools.ts
@@ -26,7 +26,7 @@ export type EnvironmentResponse = components["schemas"]["EnvironmentResponse"];
26
27
export type ErrorResponse = components["schemas"]["ZodResponse"] | undefined;
28
29
-const BASE_URL = "https://app.octomind.dev/api";
+const BASE_URL = process.env.OCTOMIND_API_URL || "https://app.octomind.dev/api";
30
31
const client = createClient<paths>({ baseUrl: BASE_URL });
32
0 commit comments