diff --git a/dev/rss.js b/dev/rss.js index 74fcb421f..660cdc716 100644 --- a/dev/rss.js +++ b/dev/rss.js @@ -30,8 +30,8 @@ const generateRssFeed = () => { id: siteURL, link: baseURL, language: 'en', - image: `${siteURL}/favicon.png`, - favicon: `${siteURL}/favicon.ico`, + image: `${siteURL}/sourcegraph-mark.png`, + favicon: `${siteURL}/sourcegraph-mark.png`, copyright: `All rights reserved ${date.getFullYear()}, Sourcegraph`, updated: date, generator: 'Sourcegraph RSS Feed', diff --git a/docs/admin/config/webhooks/incoming.mdx b/docs/admin/config/webhooks/incoming.mdx index 09b4dbd7f..0158f7b7c 100644 --- a/docs/admin/config/webhooks/incoming.mdx +++ b/docs/admin/config/webhooks/incoming.mdx @@ -291,7 +291,7 @@ To retain webhook logs for one day: ```json { "webhook.logging": { - "enabled": false, + "enabled": true, "retention": "24h" } } diff --git a/docs/admin/deploy/machine-images/aws-ami.mdx b/docs/admin/deploy/machine-images/aws-ami.mdx index c59b62b69..f1c3ae3de 100644 --- a/docs/admin/deploy/machine-images/aws-ami.mdx +++ b/docs/admin/deploy/machine-images/aws-ami.mdx @@ -8,6 +8,14 @@ Following these docs will provision the following resources: - A root EBS volume with 50GB of storage - An additional EBS volume with 500GB of storage for storing code and search indices +### Sourcegraph AMI account ID + +All Sourcegraph AMIs are published from one of the following AWS accounts: + +- Account ID: `840044800169` +- Account ID: `870751268155` + + ### Instance size chart Select an AMI according and instance type to the number of users and repositories you have using this table. If you fall between two sizes, choose the larger of the two. @@ -26,7 +34,7 @@ Click [here](https://github.com/sourcegraph/deploy#amazon-ec2-amis) to see the c **The default AMI username is `ec2-user`.** -AMIs are optimized for the specific set of resources provided by the instance type, please ensure you use the correct AMI for the associated EC2 instance type. You can [resize your EC2 instance anytime](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-resize.html), but your Sourcegraph AMI must match accordingly. If needed, follow the [upgrade steps](#upgrade) to switch to the correct AMI image that is optimized for your EC2 instance type. +While we recommend certain image types in our sizing chart, AMIs will dynamically use the resources available on the EC2 instance type they are deployed to, provided the minimum amount of resources needed is available. If you would like to resize your EC2 instance, follow the [upgrade steps](#upgrade) to switch to the correct AMI image that is optimized for your EC2 instance type. --- @@ -35,7 +43,7 @@ Click [here](https://github.com/sourcegraph/deploy#amazon-ec2-amis) to see the c 1. In the [instance size chart](#instance-size-chart), click the link for the AMI that matches your deployment size. 2. Choose **Launch instance from AMI**. 3. Name your instance. -4. Select an **instance type** according to [the sizing chart](#instance-size-chart). +4. Select an **instance type** according to [the sizing chart](#instance-size-chart) or your needs. 5. **Key pair (login)**: Select or create a new Key Pair for connecting to your instance securely (this may be required in the event you need support). 6. **Network settings**: - Under "Auto-assign public IP" select "Enable". diff --git a/docs/batch-changes/index.mdx b/docs/batch-changes/index.mdx index ec6d02a1f..77302c1c0 100644 --- a/docs/batch-changes/index.mdx +++ b/docs/batch-changes/index.mdx @@ -1,5 +1,12 @@ # Batch Changes + + Supported on [Enterprise](/pricing/enterprise) plans. + + Currently available via the Web app. + + +

This section is about Batch Changes, which helps you automate and ship large-scale code changes across many repositories and code hosts.

Batch Changes helps you ship large-scale code changes across many repositories and code hosts. You can create pull requests on all affected repositories, and it tracks their progress until they're all merged. You can also preview the changes and update them at any time. diff --git a/docs/code-search/code-navigation/auto_indexing.mdx b/docs/code-search/code-navigation/auto_indexing.mdx index a73dd252f..6a0dc5e6e 100644 --- a/docs/code-search/code-navigation/auto_indexing.mdx +++ b/docs/code-search/code-navigation/auto_indexing.mdx @@ -1,8 +1,13 @@ # Auto-indexing -

Learn and understand how auto-indexing works.

+ + Supported on [Enterprise](/pricing/enterprise) plans. + + Currently in Beta and available via Web app. + + -Auto-indexing is currently in Beta stage. +

Learn and understand how auto-indexing works.

With Sourcegraph deployments supporting [executors](/admin/executors/), your repository contents can be automatically analyzed to produce a code graph index file. Once [auto-indexing is enabled](/code-search/code-navigation/auto_indexing#enable-auto-indexing) and [auto-indexing policies are configured](/code-search/code-navigation/auto_indexing#configure-auto-indexing), repositories will be periodically cloned into an executor sandbox, analyzed, and the resulting index file will be uploaded back to the Sourcegraph instance. diff --git a/docs/code-search/code-navigation/precise_code_navigation.mdx b/docs/code-search/code-navigation/precise_code_navigation.mdx index 3513a3908..7f7e2ea2b 100644 --- a/docs/code-search/code-navigation/precise_code_navigation.mdx +++ b/docs/code-search/code-navigation/precise_code_navigation.mdx @@ -1,5 +1,12 @@ # Precise Code Navigation + + Supported on [Enterprise](/pricing/enterprise) plans. + + Available via the Web app. + + +

Learn and understand about Precise Code Navigation.

Precise Code Navigation is an opt-in feature that is enabled from your admin settings and requires you to upload indexes for each repository to your Sourcegraph instance. Once setup is complete on Sourcegraph, precise code navigation is available for use across popular development tools: diff --git a/docs/code-search/code-navigation/search_based_code_navigation.mdx b/docs/code-search/code-navigation/search_based_code_navigation.mdx index 2dce640ca..be1dd8203 100644 --- a/docs/code-search/code-navigation/search_based_code_navigation.mdx +++ b/docs/code-search/code-navigation/search_based_code_navigation.mdx @@ -1,5 +1,12 @@ # Search-based Code Navigation + + Supported on [Enterprise Starter](/pricing/enterprise-starter) and [Enterprise](/pricing/enterprise) plans. + + Available via VS Code and JetBrains editor extensions and the Web. + + +

Learn and understand about Search-based Code Navigation.

Sourcegraph comes with a default built-in code navigation provided by search-based heuristics. It works out of the box with all of the most popular programming languages. diff --git a/docs/code-search/index.mdx b/docs/code-search/index.mdx index 2b7de35c2..1b0771da8 100644 --- a/docs/code-search/index.mdx +++ b/docs/code-search/index.mdx @@ -1,5 +1,12 @@ # Code Search + + Supported on [Enterprise Starter](/pricing/enterprise-starter) and [Enterprise](/pricing/enterprise) plans. + + Available via VS Code and JetBrains editor extensions and the Web. + + +

Learn how to search code across all your repositories and code hosts.

**Code Search** allows you to find, fix, and navigate code with any code host or language across multiple repositories with real-time updates. It deeply understands your code, prioritizing the most relevant results for an enhanced search experience. diff --git a/docs/code-search/types/search-jobs.mdx b/docs/code-search/types/search-jobs.mdx index 2e06ee2c8..b0b9e3ce7 100644 --- a/docs/code-search/types/search-jobs.mdx +++ b/docs/code-search/types/search-jobs.mdx @@ -1,5 +1,12 @@ # Search Jobs + + Supported on [Enterprise](/pricing/enterprise) plans. + + Currently available via the Web app. + + + Use Search Jobs to search code at scale for large-scale organizations. Search Jobs allows you to run search queries across your organization's codebase (all repositories, branches, and revisions) at scale. It enhances the existing Sourcegraph's search capabilities, enabling you to run searches without query timeouts or incomplete results. diff --git a/docs/code-search/types/symbol.mdx b/docs/code-search/types/symbol.mdx index b472ad492..8a3e07388 100644 --- a/docs/code-search/types/symbol.mdx +++ b/docs/code-search/types/symbol.mdx @@ -1,5 +1,12 @@ # Symbol search + + Supported on [Enterprise Starter](/pricing/enterprise-starter) and [Enterprise](/pricing/enterprise) plans. + + Available via VS Code and JetBrains editor extensions and the Web. + + + We use [Ctags](https://github.com/universal-ctags/ctags) to index the symbols of a repository on demand. These symbols are used to implement symbol search, matching declarations instead of plain text. ![symbol-search](https://storage.googleapis.com/sourcegraph-assets/Docs/Symbols.png) diff --git a/docs/code_insights/index.mdx b/docs/code_insights/index.mdx index 345d05535..e88e13413 100644 --- a/docs/code_insights/index.mdx +++ b/docs/code_insights/index.mdx @@ -1,5 +1,12 @@ # Code Insights + + Supported on [Enterprise](/pricing/enterprise) plans. + + Currently available via the Web app. + + +

Anything you can search, you can track and analyze

diff --git a/docs/code_monitoring/index.mdx b/docs/code_monitoring/index.mdx index 5f89d4a27..829e05826 100644 --- a/docs/code_monitoring/index.mdx +++ b/docs/code_monitoring/index.mdx @@ -1,5 +1,12 @@ # Code monitoring + + Supported on [Enterprise](/pricing/enterprise) plans. + + Currently available via the Web app. + + +

Keep on top of events in your codebase

Watch your code with code monitors and trigger actions to run automatically in response to events. diff --git a/docs/cody/index.mdx b/docs/cody/index.mdx index 7aa1a1840..50a4d3726 100644 --- a/docs/cody/index.mdx +++ b/docs/cody/index.mdx @@ -1,5 +1,12 @@ # Cody + + Supported on all [Sourcegraph plans](https://about.sourcegraph.com/pricing). + + Available on VS Code, JetBrains, Visual Studio, Eclipse and the Web. + + + Cody is an AI coding assistant that uses all the latest LLMs and your development context to help you understand, write, and fix code faster. It uses the powerful Sourcegraph's advanced Search API to pull context from both local and remote codebases so that you can use context about APIs, symbols, and usage patterns from across your entire codebase.