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/docs/configuration/environment-variables.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ The following environment variables allow you to configure your Sourcebot deploy
14
14
|`AUTH_EMAIL_CODE_LOGIN_ENABLED`|`false`| <p>Enables/disables authentication with a login code that's sent to a users email. `SMTP_CONNECTION_URL` and `EMAIL_FROM_ADDRESS` must also be set. Checkout the [auth docs](/docs/configuration/auth/overview) for more info </p> |
15
15
|`AUTH_SECRET`| Automatically generated at startup if no value is provided. Generated using `openssl rand -base64 33`| <p>Used to validate login session cookies</p> |
16
16
|`AUTH_URL`| - | <p>URL of your Sourcebot deployment, e.g., `https://example.com` or `http://localhost:3000`.</p> |
17
-
|`CONFIG_PATH`|`-`| <p>The container relative path to the declerative configuration file. See [this doc](/docs/configuration/declarative-config) for more info.</p> |
17
+
|`CONFIG_PATH`|`-`| <p>The container relative path to the declarative configuration file. See [this doc](/docs/configuration/declarative-config) for more info.</p> |
18
18
|`DATA_CACHE_DIR`|`$DATA_DIR/.sourcebot`| <p>The root data directory in which all data written to disk by Sourcebot will be located.</p> |
19
19
|`DATA_DIR`|`/data`| <p>The directory within the container to store all persistent data. Typically, this directory will be volume mapped such that data is persisted across container restarts (e.g., `docker run -v $(pwd):/data`)</p> |
20
20
|`DATABASE_DATA_DIR`|`$DATA_CACHE_DIR/db`| <p>The data directory for the default Postgres database.</p> |
Copy file name to clipboardExpand all lines: docs/docs/configuration/idp.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ in the GitHub identity provider config.
57
57
<Accordiontitle="instructions">
58
58
<Steps>
59
59
<Steptitle="Register an Oauth Client">
60
-
To begin, you must register an Oauth client in GitHub to faciliate the identity provider connection. You can do this by creating a **GitHub App** or a **GitHub OAuth App**. Either
60
+
To begin, you must register an Oauth client in GitHub to facilitate the identity provider connection. You can do this by creating a **GitHub App** or a **GitHub OAuth App**. Either
61
61
one works, but the **GitHub App** is the [recommended mechanism](https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/differences-between-github-apps-and-oauth-apps).
62
62
63
63
@@ -80,7 +80,7 @@ in the GitHub identity provider config.
80
80
</Tab>
81
81
</Tabs>
82
82
</Step>
83
-
<Steptitle="Define environemnt variables">
83
+
<Steptitle="Define environment variables">
84
84
To provide Sourcebot the client id and secret for your OAuth client you must set them as environment variables. These can be named whatever you like
85
85
(ex. `GITHUB_IDENTITY_PROVIDER_CLIENT_ID` and `GITHUB_IDENTITY_PROVIDER_CLIENT_SECRET`)
Copy file name to clipboardExpand all lines: docs/docs/configuration/language-model-providers.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ For a detailed description of all the providers, please refer to the [schema](ht
111
111
"model": "YOUR_MODEL_HERE",
112
112
"displayName": "OPTIONAL_DISPLAY_NAME",
113
113
"resourceName": "YOUR_RESOURCE_NAME", // defaults to the AZURE_RESOURCE_NAME env var if not set
114
-
"apiVersion": "OPTIONAL_API_VERSION", // defailts to 'preview' if not set
114
+
"apiVersion": "OPTIONAL_API_VERSION", // defaults to 'preview' if not set
115
115
"token": {
116
116
"env": "AZURE_API_KEY"
117
117
},
@@ -166,7 +166,7 @@ For a detailed description of all the providers, please refer to the [schema](ht
166
166
### Google Vertex
167
167
168
168
<Note>If you're using an Anthropic model on Google Vertex, you must define a [Google Vertex Anthropic](#google-vertex-anthropic) provider instead</Note>
169
-
<Note>The `credentials`paramater here expects a **path** to a [credentials](https://console.cloud.google.com/apis/credentials) file. This file **must be in a volume mounted by Sourcebot** for it to be readable.</Note>
169
+
<Note>The `credentials`parameter here expects a **path** to a [credentials](https://console.cloud.google.com/apis/credentials) file. This file **must be in a volume mounted by Sourcebot** for it to be readable.</Note>
170
170
171
171
[Vercel AI SDK Google Vertex AI Docs](https://ai-sdk.dev/providers/ai-sdk-providers/google-vertex)
172
172
@@ -191,7 +191,7 @@ For a detailed description of all the providers, please refer to the [schema](ht
191
191
192
192
### Google Vertex Anthropic
193
193
194
-
<Note>The `credentials`paramater here expects a **path** to a [credentials](https://console.cloud.google.com/apis/credentials) file. This file **must be in a volume mounted by Sourcebot** for it to be readable.</Note>
194
+
<Note>The `credentials`parameter here expects a **path** to a [credentials](https://console.cloud.google.com/apis/credentials) file. This file **must be in a volume mounted by Sourcebot** for it to be readable.</Note>
195
195
196
196
197
197
[Vercel AI SDK Google Vertex Anthropic Docs](https://ai-sdk.dev/providers/ai-sdk-providers/google-vertex#google-vertex-anthropic-provider-usage)
0 commit comments