You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/how-to/configure.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ CodeGate supports the following parameters:
31
31
|`CODEGATE_OLLAMA_URL`|`http://host.docker.internal:11434`| Specifies the URL of your Ollama instance. |
32
32
|`CODEGATE_OPENAI_URL`|`https://api.openai.com/v1`| Specifies the OpenAI engine API endpoint URL. |
33
33
|`CODEGATE_VLLM_URL`|`http://localhost:8000`| Specifies the URL of the vLLM server to use. |
34
-
|`DASHBOARD_BASE_API_URL`|`http://localhost:8989`| Overrides the base URL of the CodeGate API referenced by the dashboard UI (see [run CodeGate on a remote host](#run-on-remote-host)). |
34
+
|`DASHBOARD_API_BASE_URL`|`http://localhost:8989`| Overrides the base URL of the CodeGate API referenced by the dashboard UI (see [run CodeGate on a remote host](#run-on-remote-host)). |
35
35
36
36
### Example: Use CodeGate with a remote Ollama server
37
37
@@ -57,12 +57,12 @@ that is directly accessible from the Internet!
57
57
The CodeGate web dashboard provided in the Docker container makes client-side
58
58
API calls from your web browser, and expects the CodeGate API to be available on
59
59
_localhost_ port 8989 by default. To run CodeGate on a different host from your
60
-
client/browser, you can override this using the `DASHBOARD_BASE_API_URL`
60
+
client/browser, you can override this using the `DASHBOARD_API_BASE_URL`
61
61
environment variable (available since CodeGate v0.1.28):
62
62
63
63
```bash {2}
64
64
docker run --name codegate -d -p 8989:8989 -p 9090:9090 \
0 commit comments