Skip to content

Commit eb4d43c

Browse files
committed
update readme to point to new demo site
1 parent 693d53d commit eb4d43c

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<a href="https://docs.sourcebot.dev/self-hosting/overview">
1212
<strong>Self Host</strong>
1313
</a> ·
14-
<a href="https://demo.sourcebot.dev">
14+
<a href="https://app.sourcebot.dev">
1515
<strong>Public Demo</strong>
1616
</a>
1717
</h3>
@@ -41,7 +41,7 @@ Sourcebot is a self-hosted tool that helps you understand your codebase.
4141
- **Ask Sourcebot:** Ask questions about your codebase and have Sourcebot provide detailed answers grounded with inline citations.
4242
- **Code search:** Search and navigate across all your repos and branches, no matter where they’re hosted.
4343

44-
Try it out in our [public demo](https://demo.sourcebot.dev)!
44+
Try it out in our [public demo](https://app.sourcebot.dev)!
4545

4646
https://github.com/user-attachments/assets/ed66a622-e38f-4947-a531-86df1e1e0218
4747

@@ -108,7 +108,7 @@ docker compose up
108108
To configure Sourcebot (index your own repos, connect your LLMs, etc), check out our [docs](https://docs.sourcebot.dev/docs/configuration/config-file).
109109

110110
> [!NOTE]
111-
> Sourcebot collects <a href="https://demo.sourcebot.dev/~/search?query=captureEvent%5C(%20repo%3Asourcebot">anonymous usage data</a> by default to help us improve the product. No sensitive data is collected, but if you'd like to disable this you can do so by setting the `SOURCEBOT_TELEMETRY_DISABLED` environment
111+
> Sourcebot collects <a href="https://app.sourcebot.dev/~/search?query=captureEvent%5C(%20repo%3Asourcebot">anonymous usage data</a> by default to help us improve the product. No sensitive data is collected, but if you'd like to disable this you can do so by setting the `SOURCEBOT_TELEMETRY_DISABLED` environment
112112
> variable to `true`. Please refer to our [telemetry docs](https://docs.sourcebot.dev/docs/overview#telemetry) for more information.
113113
114114
# Build from source

packages/mcp/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The Sourcebot MCP server gives your LLM agents the ability to fetch code context
2828

2929
2. (optional) Spin up a Sourcebot instance by following [this guide](https://docs.sourcebot.dev/self-hosting/overview). The host url of your instance (e.g., `http://localhost:3000`) is passed to the MCP server via the `SOURCEBOT_HOST` url. This allows you to control which repos Sourcebot MCP fetches context from (including private repos).
3030

31-
If a host is not provided, then the server will fallback to using the demo instance hosted at https://demo.sourcebot.dev. You can see the list of repositories indexed [here](https://demo.sourcebot.dev/~/repos). Add additional repositories by [opening a PR](https://github.com/sourcebot-dev/sourcebot/blob/main/demo-site-config.json).
31+
If a host is not provided, then the server will fallback to using the demo instance hosted at https://app.sourcebot.dev. You can see the list of repositories indexed [here](https://app.sourcebot.dev/~/repos). Add additional repositories by [opening a PR](https://github.com/sourcebot-dev/sourcebot/blob/main/demo-site-config.json).
3232

3333
3. Install `@sourcebot/mcp` into your MCP client:
3434

@@ -47,7 +47,7 @@ The Sourcebot MCP server gives your LLM agents the ability to fetch code context
4747
"sourcebot": {
4848
"command": "npx",
4949
"args": ["-y", "@sourcebot/mcp@latest" ],
50-
// Optional - if not specified, https://demo.sourcebot.dev is used
50+
// Optional - if not specified, https://app.sourcebot.dev is used
5151
"env": {
5252
"SOURCEBOT_HOST": "http://localhost:3000"
5353
}
@@ -72,7 +72,7 @@ The Sourcebot MCP server gives your LLM agents the ability to fetch code context
7272
"sourcebot": {
7373
"command": "npx",
7474
"args": ["-y", "@sourcebot/mcp@latest" ],
75-
// Optional - if not specified, https://demo.sourcebot.dev is used
75+
// Optional - if not specified, https://app.sourcebot.dev is used
7676
"env": {
7777
"SOURCEBOT_HOST": "http://localhost:3000"
7878
}
@@ -96,7 +96,7 @@ The Sourcebot MCP server gives your LLM agents the ability to fetch code context
9696
"type": "stdio",
9797
"command": "npx",
9898
"args": ["-y", "@sourcebot/mcp@latest"],
99-
// Optional - if not specified, https://demo.sourcebot.dev is used
99+
// Optional - if not specified, https://app.sourcebot.dev is used
100100
"env": {
101101
"SOURCEBOT_HOST": "http://localhost:3000"
102102
}
@@ -116,7 +116,7 @@ The Sourcebot MCP server gives your LLM agents the ability to fetch code context
116116

117117
```sh
118118
# SOURCEBOT_HOST env var is optional - if not specified,
119-
# https://demo.sourcebot.dev is used.
119+
# https://app.sourcebot.dev is used.
120120
claude mcp add sourcebot -e SOURCEBOT_HOST=http://localhost:3000 -- npx -y @sourcebot/mcp@latest
121121
```
122122
</details>
@@ -134,7 +134,7 @@ The Sourcebot MCP server gives your LLM agents the ability to fetch code context
134134
"sourcebot": {
135135
"command": "npx",
136136
"args": ["-y", "@sourcebot/mcp@latest"],
137-
// Optional - if not specified, https://demo.sourcebot.dev is used
137+
// Optional - if not specified, https://app.sourcebot.dev is used
138138
"env": {
139139
"SOURCEBOT_HOST": "http://localhost:3000"
140140
}

0 commit comments

Comments
 (0)