summaryrefslogtreecommitdiff
path: root/extension/src/bridge.ts
blob: e4c74771c9bea1ea75e38f44dfb58203f951377a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import * as vscode from "vscode";

export function getContinueServerUrl() {
  // Passed in from launch.json
  if (process.env.CONTINUE_SERVER_URL) {
    return process.env.CONTINUE_SERVER_URL;
  }
  
  return (
    vscode.workspace.getConfiguration("continue").get<string>("serverUrl") ||
    "http://localhost:65432"
  );
}