Skip to content

Commit 333d45b

Browse files
authored
Merge branch 'main' into feature/gerrit-authentication
2 parents 2789799 + ee90edc commit 333d45b

File tree

3 files changed

+22
-28
lines changed

3 files changed

+22
-28
lines changed

docs/docs/deployment-guide.mdx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ The following guide will walk you through the steps to deploy Sourcebot on your
1010
## Walkthrough video
1111
---
1212

13-
Watch this 1:51 minute video to get a quick overview of how to deploy Sourcebot using Docker.
13+
Watch this quick walkthrough video to learn how to deploy Sourcebot using Docker.
1414

1515
<iframe
16-
src="https://www.youtube.com/embed/1_JCr05haWc"
16+
src="https://youtube.com/embed/TPQh0z7Qcjg"
1717
title="YouTube video player"
1818
frameborder="0"
1919
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
@@ -69,8 +69,6 @@ Watch this 1:51 minute video to get a quick overview of how to deploy Sourcebot
6969
ghcr.io/sourcebot-dev/sourcebot:latest
7070
```
7171

72-
Navigate to `localhost:3000` to start searching the Sourcebot repo.
73-
7472
<Accordion title="Details">
7573
**This command**:
7674
- pulls the latest version of the `sourcebot` docker image.
@@ -82,8 +80,8 @@ Watch this 1:51 minute video to get a quick overview of how to deploy Sourcebot
8280

8381
</Step>
8482

85-
<Step title="Login">
86-
Navigate to `http://localhost:3000` and create an account. The first account which is registered on a fresh Sourcebot deployment is given the [owner role](/docs/configuration/auth/roles-and-permissions).
83+
<Step title="Complete onboarding">
84+
Navigate to `http://localhost:3000` and complete the onboarding flow.
8785

8886
<Note>
8987
By default, only email / password authentication is enabled. [Learn more about authentication](/docs/configuration/auth/overview).

docs/docs/features/mcp-server.mdx

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -81,20 +81,18 @@ The [Model Context Protocol](https://modelcontextprotocol.io/introduction) (MCP)
8181
<Accordion title="VS Code">
8282
[VS Code MCP docs](https://code.visualstudio.com/docs/copilot/chat/mcp-servers)
8383

84-
Add the following to your [settings.json](https://code.visualstudio.com/docs/copilot/chat/mcp-servers):
84+
Add the following to your [.vscode/mcp.json](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server-to-your-workspace) file:
8585

8686
```json
8787
{
88-
"mcp": {
89-
"servers": {
90-
"sourcebot": {
91-
"type": "stdio",
92-
"command": "npx",
93-
"args": ["-y", "@sourcebot/mcp@latest"],
94-
"env": {
95-
"SOURCEBOT_HOST": "http://localhost:3000",
96-
"SOURCEBOT_API_KEY": "your-api-key"
97-
}
88+
"servers": {
89+
"sourcebot": {
90+
"type": "stdio",
91+
"command": "npx",
92+
"args": ["-y", "@sourcebot/mcp@latest"],
93+
"env": {
94+
"SOURCEBOT_HOST": "http://localhost:3000",
95+
"SOURCEBOT_API_KEY": "your-api-key"
9896
}
9997
}
10098
}

packages/mcp/README.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -87,20 +87,18 @@ The Sourcebot MCP server gives your LLM agents the ability to fetch code context
8787

8888
[VS Code MCP docs](https://code.visualstudio.com/docs/copilot/chat/mcp-servers)
8989

90-
Add the following to your [settings.json](https://code.visualstudio.com/docs/copilot/chat/mcp-servers):
90+
Add the following to your [.vscode/mcp.json](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server-to-your-workspace) file:
9191

9292
```json
9393
{
94-
"mcp": {
95-
"servers": {
96-
"sourcebot": {
97-
"type": "stdio",
98-
"command": "npx",
99-
"args": ["-y", "@sourcebot/mcp@latest"],
100-
// Optional - if not specified, https://demo.sourcebot.dev is used
101-
"env": {
102-
"SOURCEBOT_HOST": "http://localhost:3000"
103-
}
94+
"servers": {
95+
"sourcebot": {
96+
"type": "stdio",
97+
"command": "npx",
98+
"args": ["-y", "@sourcebot/mcp@latest"],
99+
// Optional - if not specified, https://demo.sourcebot.dev is used
100+
"env": {
101+
"SOURCEBOT_HOST": "http://localhost:3000"
104102
}
105103
}
106104
}

0 commit comments

Comments
 (0)