mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 04:15:30 +00:00
change demo url references
This commit is contained in:
parent
68344ce2f5
commit
e57a981030
4 changed files with 6 additions and 6 deletions
|
|
@ -14,7 +14,7 @@
|
||||||
<a href="https://docs.sourcebot.dev/self-hosting/overview">
|
<a href="https://docs.sourcebot.dev/self-hosting/overview">
|
||||||
<strong>Self Host</strong>
|
<strong>Self Host</strong>
|
||||||
</a> ·
|
</a> ·
|
||||||
<a href="https://sourcebot.dev/search">
|
<a href="https://demo.sourcebot.dev">
|
||||||
<strong>Demo</strong>
|
<strong>Demo</strong>
|
||||||
</a>
|
</a>
|
||||||
</h3>
|
</h3>
|
||||||
|
|
@ -60,7 +60,7 @@ https://github.com/user-attachments/assets/ced355f3-967e-4f37-ae6e-74ab8c06b9ec
|
||||||
- 🎨 **Modern web app**: Enjoy a sleek interface with features like syntax highlighting, light/dark mode, and vim-style navigation
|
- 🎨 **Modern web app**: Enjoy a sleek interface with features like syntax highlighting, light/dark mode, and vim-style navigation
|
||||||
- 📂 **Full file visualization**: Instantly view the entire file when selecting any search result.
|
- 📂 **Full file visualization**: Instantly view the entire file when selecting any search result.
|
||||||
|
|
||||||
You can try out our public hosted demo [here](https://sourcebot.dev/search)!
|
You can try out our public hosted demo [here](https://demo.sourcebot.dev)!
|
||||||
|
|
||||||
# Deploy Sourcebot
|
# Deploy Sourcebot
|
||||||
|
|
||||||
|
|
@ -105,7 +105,7 @@ docker run -p 3000:3000 --pull=always --rm -v $(pwd):/data -e CONFIG_PATH=/data/
|
||||||
To learn how to configure Sourcebot to index your own repos, please refer to our [docs](https://docs.sourcebot.dev/self-hosting/overview).
|
To learn how to configure Sourcebot to index your own repos, please refer to our [docs](https://docs.sourcebot.dev/self-hosting/overview).
|
||||||
|
|
||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
> Sourcebot collects <a href="https://sourcebot.dev/search/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
|
> 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
|
||||||
> variable to `false`. Please refer to our [telemetry docs](https://docs.sourcebot.dev/self-hosting/overview#telemetry) for more information.
|
> variable to `false`. Please refer to our [telemetry docs](https://docs.sourcebot.dev/self-hosting/overview#telemetry) for more information.
|
||||||
|
|
||||||
# Build from source
|
# Build from source
|
||||||
|
|
|
||||||
|
|
@ -19,4 +19,4 @@ There are two ways to get started using Sourcebot:
|
||||||
</Card>
|
</Card>
|
||||||
</CardGroup>
|
</CardGroup>
|
||||||
|
|
||||||
We also have a [public demo](https://sourcebot.dev/search) if you'd like to try Sourcebot out before registering.
|
We also have a [public demo](https://demo.sourcebot.dev) if you'd like to try Sourcebot out before registering.
|
||||||
|
|
|
||||||
|
|
@ -112,7 +112,7 @@ Sourcebot does not support horizontal scaling at this time, but it is on our roa
|
||||||
|
|
||||||
|
|
||||||
## Telemetry
|
## Telemetry
|
||||||
By default, Sourcebot collects anonymized usage data through [PostHog](https://posthog.com/) to help us improve the performance and reliability of our tool. We don't collect or transmit <a href="https://sourcebot.dev/search/search?query=captureEvent%5C(%20repo%3Asourcebot">any information related to your codebase</a>. In addition, all events are [sanitized](https://github.com/sourcebot-dev/sourcebot/blob/HEAD/packages/web/src/app/posthogProvider.tsx) to ensure that no sensitive details (ex. ip address, query info) leave your machine.
|
By default, Sourcebot collects anonymized usage data through [PostHog](https://posthog.com/) to help us improve the performance and reliability of our tool. We don't collect or transmit <a href="https://demo.sourcebot.dev/~/search?query=captureEvent%5C(%20repo%3Asourcebot">any information related to your codebase</a>. In addition, all events are [sanitized](https://github.com/sourcebot-dev/sourcebot/blob/HEAD/packages/web/src/app/posthogProvider.tsx) to ensure that no sensitive details (ex. ip address, query info) leave your machine.
|
||||||
|
|
||||||
The data we collect includes general usage statistics and metadata such as query performance (e.g., search duration, error rates) to monitor the application's health and functionality. This information helps us better understand how Sourcebot is used and where improvements can be made.
|
The data we collect includes general usage statistics and metadata such as query performance (e.g., search duration, error rates) to monitor the application's health and functionality. This information helps us better understand how Sourcebot is used and where improvements can be made.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ export default function DemoCard() {
|
||||||
|
|
||||||
<Button asChild variant="outline" size="sm" className="h-8 text-xs">
|
<Button asChild variant="outline" size="sm" className="h-8 text-xs">
|
||||||
<Link
|
<Link
|
||||||
href="https://sourcebot.dev/search"
|
href="https://demo.sourcebot.dev"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
className="flex items-center gap-1.5"
|
className="flex items-center gap-1.5"
|
||||||
onClick={() => captureEvent('wa_demo_card_click', {})}
|
onClick={() => captureEvent('wa_demo_card_click', {})}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue