Skip to content
This repository was archived by the owner on Jul 14, 2026. It is now read-only.

Commit 909c747

Browse files
authored
API URL OVERRIDE (#162)
1 parent 8d59e15 commit 909c747

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export type EnvironmentResponse = components["schemas"]["EnvironmentResponse"];
2626

2727
export type ErrorResponse = components["schemas"]["ZodResponse"] | undefined;
2828

29-
const BASE_URL = "https://app.octomind.dev/api";
29+
const BASE_URL = process.env.OCTOMIND_API_URL || "https://app.octomind.dev/api";
3030

3131
const client = createClient<paths>({ baseUrl: BASE_URL });
3232

0 commit comments

Comments
 (0)