diff --git a/README.md b/README.md index 35ae281808b..ecd4c7cff32 100644 --- a/README.md +++ b/README.md @@ -62,3 +62,4 @@ The `doc` directory has additional documentation for developing and understandin Sourcegraph OSS is available freely under the [Apache 2 license](LICENSE.apache). Sourcegraph OSS comprises all files in this repository except those in the `enterprise/` and `client/web/src/enterprise` directories. All files in the `enterprise/` and `client/web/src/enterprise/` directories are subject to the [Sourcegraph Enterprise license](LICENSE.enterprise). +Hello Hello! diff --git a/cmd/frontend/README.md b/cmd/frontend/README.md index 1593ac188b0..962091583fa 100644 --- a/cmd/frontend/README.md +++ b/cmd/frontend/README.md @@ -7,3 +7,4 @@ Typically there are multiple replicas running in production to scale with load. Application data is stored in our PostgreSQL database. Session data is stored in the Redis store, and non-persistent data is stored in the Redis cache. +Hello Hello! diff --git a/cmd/github-proxy/README.md b/cmd/github-proxy/README.md index 18dd0abba9c..6f12db1dd10 100644 --- a/cmd/github-proxy/README.md +++ b/cmd/github-proxy/README.md @@ -3,3 +3,4 @@ Proxies all requests to github.com to keep track of rate limits and prevent triggering abuse mechanisms. There is only one replica running in production. +Hello Hello! diff --git a/cmd/gitserver/README.md b/cmd/gitserver/README.md index b8c36d5d744..a5bd7fea470 100644 --- a/cmd/gitserver/README.md +++ b/cmd/gitserver/README.md @@ -36,3 +36,4 @@ gitserver's memory usage consists of short lived git subprocesses. This is an IO and compute heavy service since most Sourcegraph requests will trigger 1 or more git commands. As such we shard requests for a repo to a specific replica. This allows us to horizontally scale out the service. The service is stateful (maintaining git clones). However, it only contains data mirrored from upstream code hosts. +Hello Hello! diff --git a/cmd/query-runner/README.md b/cmd/query-runner/README.md index 36dd592335e..3079c7de6e6 100644 --- a/cmd/query-runner/README.md +++ b/cmd/query-runner/README.md @@ -1,3 +1,4 @@ # query-runner Periodically runs saved searches, determines the difference in results, and sends notification emails. It is a singleton service by design so there must only be one replica. +Hello Hello! diff --git a/cmd/repo-updater/README.md b/cmd/repo-updater/README.md index d10ccfe152a..96e42596ee0 100644 --- a/cmd/repo-updater/README.md +++ b/cmd/repo-updater/README.md @@ -1,3 +1,4 @@ # repo-updater Repo-updater tracks the state of repos, and is responsible for automatically scheduling updates ("git fetch" runs) using gitserver. Other apps which desire updates or fetches should be telling repo-updater, rather than using gitserver directly, so repo-updater can take their changes into account. It is a singleton service by design, so there must only be one replica. +Hello Hello! diff --git a/cmd/searcher/README.md b/cmd/searcher/README.md index 4b711a58ef4..31e57f74556 100644 --- a/cmd/searcher/README.md +++ b/cmd/searcher/README.md @@ -5,3 +5,4 @@ Provides on-demand unindexed search for repositories. It scans through a git arc This service should be scaled up the more on-demand searches that need to be done at once. For a search the frontend will scatter the search for each repo@commit across the replicas. The frontend will then gather the results. Like gitserver this is an IO and compute bound service. However, its state is just a disk cache which can be lost at anytime without being detrimental. [Life of a search query](../../doc/dev/background-information/architecture/life-of-a-search-query.md) +Hello Hello! diff --git a/cmd/symbols/README.md b/cmd/symbols/README.md index fe0a26db966..15844645ce5 100644 --- a/cmd/symbols/README.md +++ b/cmd/symbols/README.md @@ -7,3 +7,4 @@ The ctags output is stored in SQLite files on disk (one per repository@commit). It is used by [basic-code-intel](https://github.com/sourcegraph/sourcegraph-basic-code-intel) to provide the jump-to-definition feature. It supports regex queries, with queries of the form `^foo$` optimized to perform an index lookup (basic-code-intel takes advantage of this). +Hello Hello! diff --git a/cmd/worker/README.md b/cmd/worker/README.md index d28554f3ab5..50c906297d4 100644 --- a/cmd/worker/README.md +++ b/cmd/worker/README.md @@ -1,3 +1,4 @@ # Worker The worker service is a collection of the background jobs performed by a Sourcegraph instance. Jobs registered to the worker will run periodically or in response to some event read from the database. +Hello Hello! diff --git a/dev/auth-provider/README.md b/dev/auth-provider/README.md index b14f59d2857..ff536f5c69f 100644 --- a/dev/auth-provider/README.md +++ b/dev/auth-provider/README.md @@ -23,3 +23,4 @@ If you need to edit client or user information and want to persist your changes: 1. Run `RESET=1 scripts/configure-keycloak.sh` to clobber the existing configuration with the `config/*.json` files' configuration. Not sure how to edit the JSON to achieve your desired outcome? Use the Keycloak admin interface at http://localhost:3220/auth (login as `root`/`q`) to change configuration, and then export to JSON. +Hello Hello! diff --git a/dev/ci/test/README.md b/dev/ci/test/README.md index a1be0540d16..e5313b8a335 100644 --- a/dev/ci/test/README.md +++ b/dev/ci/test/README.md @@ -66,3 +66,4 @@ All commands should be wrapped into a bach script, which is run as part of the ` cd /sourcegraph ./dev/ci/test/new-vagrant-test/test.sh ``` +Hello Hello! diff --git a/dev/depgraph/README.md b/dev/depgraph/README.md index 1a458fbde89..5af996f73d9 100644 --- a/dev/depgraph/README.md +++ b/dev/depgraph/README.md @@ -44,3 +44,4 @@ This command ensures the following lint passes. Violations of the lint rules wil - **NoLooseCommands**: Report main packages outside of known command roots - **NoReachingIntoCommands**: Report packages that import code from an unrelated command - **NoUnusedSharedCommandCode**: Report packages that could be moved into an internal package +Hello Hello! diff --git a/dev/gqltest/README.md b/dev/gqltest/README.md index 92020c213d2..bf76267f40c 100644 --- a/dev/gqltest/README.md +++ b/dev/gqltest/README.md @@ -83,3 +83,4 @@ Adding new tests to this test suite is as easy as adding a Go test, here are som - Delete external services created during the test. - Although, sometimes you would not want to delete an entity so you could login and inspect the failure state. - Prefix your branch name with `backend-dry-run/` will run integration tests in CI on your pull request. +Hello Hello! diff --git a/dev/prometheus/README.md b/dev/prometheus/README.md index 4b66da659be..549a7923842 100644 --- a/dev/prometheus/README.md +++ b/dev/prometheus/README.md @@ -5,3 +5,4 @@ This directory contains configuration for the [Prometheus](https://prometheus.io This directory is mounted into the `prometheus` container. After making your changes to this directory, simply `docker restart prometheus` for your changes to take effect (depending on your change, Prometheus may respond to it as soon as you save the file). +Hello Hello! diff --git a/dev/release/README.md b/dev/release/README.md index 9cdab5f6e2b..03632a02a03 100644 --- a/dev/release/README.md +++ b/dev/release/README.md @@ -12,3 +12,4 @@ yarn run release help # add 'all' to see test commands as well Before using this tool, please verify that the [release configuration](./release-config.jsonc) is set up correctly. +Hello Hello! diff --git a/dev/sg/README.md b/dev/sg/README.md index f15d733abc7..2e15fe6a870 100644 --- a/dev/sg/README.md +++ b/dev/sg/README.md @@ -360,3 +360,4 @@ sg tail-log http # Tail all logs sg tail-log all ``` +Hello Hello! diff --git a/dev/sg/root/README.md b/dev/sg/root/README.md index b3c285e0118..f11611aaa4a 100644 --- a/dev/sg/root/README.md +++ b/dev/sg/root/README.md @@ -1 +1,2 @@ TODO: Move me into some shared area. This code is also used in dev/depgraph +Hello Hello! diff --git a/dev/tilt/README.md b/dev/tilt/README.md index 5f7de89a47d..d6af3b77e31 100644 --- a/dev/tilt/README.md +++ b/dev/tilt/README.md @@ -30,3 +30,4 @@ Tilt will start an initial build of the frontend and deploy it. Whenever you are Similar to the `frontend` you can add other `custom_build` statements to your `Tiltfile` to build and watch the other servers. There are many `Tiltfile` modifications that can help accelerate the edit/build/deploy cycle: https://docs.tilt.dev/example_go.html +Hello Hello! diff --git a/dev/zoekt/README.md b/dev/zoekt/README.md index ddbbeb34848..1b952f545e8 100644 --- a/dev/zoekt/README.md +++ b/dev/zoekt/README.md @@ -4,3 +4,4 @@ This directory contains utilities that are useful for Zoekt development. - [update](./update) Updates the version of zoekt in `go.mod`. - [wrapper](./wrapper) Is used by our dev Procfile to control behaviour. +Hello Hello! diff --git a/enterprise/README.md b/enterprise/README.md index 8761c91da46..d8e127e9a1e 100644 --- a/enterprise/README.md +++ b/enterprise/README.md @@ -8,3 +8,4 @@ This directory contains Sourcegraph Enterprise code. ## Dev See [Local development: For Sourcegraph employees](https://docs.sourcegraph.com/dev/local_development#for-sourcegraph-employees) for how to work on this code. +Hello Hello! diff --git a/enterprise/cmd/executor/README.md b/enterprise/cmd/executor/README.md index 5677dd7e3ac..9f1bb5905ec 100644 --- a/enterprise/cmd/executor/README.md +++ b/enterprise/cmd/executor/README.md @@ -3,3 +3,4 @@ The executor service polls the public frontend API for work to perform. The executor will pull a job from a particular queue (configured via the envvar `EXECUTOR_QUEUE_NAME`), then performs the job by running a sequence of docker and src-cli commands. This service is horizontally scalable. See the [executor queue](../frontend/internal/executorqueue/README.md) for a complete list of queues. +Hello Hello! diff --git a/enterprise/cmd/frontend/internal/executorqueue/README.md b/enterprise/cmd/frontend/internal/executorqueue/README.md index abb399476eb..f5bee10fc6b 100644 --- a/enterprise/cmd/frontend/internal/executorqueue/README.md +++ b/enterprise/cmd/frontend/internal/executorqueue/README.md @@ -6,3 +6,4 @@ The executor-queue maintains the executor work queues. Executor instances poll f - The `codeintel` queue contains unprocessed lsif_index records - The `batches` queue contains unprocessed batch_spec_execution records +Hello Hello! diff --git a/enterprise/cmd/precise-code-intel-worker/README.md b/enterprise/cmd/precise-code-intel-worker/README.md index 482d9e5ae59..1e5809b93a7 100644 --- a/enterprise/cmd/precise-code-intel-worker/README.md +++ b/enterprise/cmd/precise-code-intel-worker/README.md @@ -1,3 +1,4 @@ # Precise code intel worker The precise-code-intel-worker service converts LSIF upload file into Postgres data. This service is horizontally scalable. +Hello Hello! diff --git a/enterprise/cmd/server/README.md b/enterprise/cmd/server/README.md index 57bab3be27e..fb9869d35df 100644 --- a/enterprise/cmd/server/README.md +++ b/enterprise/cmd/server/README.md @@ -1,3 +1,4 @@ # Sourcegraph Server This directory contains the code which makes up the `sourcegraph/server` Docker image which runs Sourcegraph on a single node. +Hello Hello! diff --git a/enterprise/cmd/worker/README.md b/enterprise/cmd/worker/README.md index eebd59c2283..dcb6ceabe2c 100644 --- a/enterprise/cmd/worker/README.md +++ b/enterprise/cmd/worker/README.md @@ -1,3 +1,4 @@ # Enterprise worker The enterprise worker supplements the OSS worker with additional enterprise-relevant background jobs. +Hello Hello! diff --git a/enterprise/dev/ci/README.md b/enterprise/dev/ci/README.md index 71c66002836..53fef01f985 100644 --- a/enterprise/dev/ci/README.md +++ b/enterprise/dev/ci/README.md @@ -13,3 +13,4 @@ go run ./enterprise/dev/ci/gen-pipeline.go | buildkite-agent pipeline upload ## Testing To test this you can run `env BUILDKITE_BRANCH=TESTBRANCH go run ./enterprise/dev/ci/gen-pipeline.go` and inspect the YAML output. To change the behaviour set the relevant `BUILDKITE_` environment variables. +Hello Hello! diff --git a/internal/cmd/ghe-feeder/README.md b/internal/cmd/ghe-feeder/README.md index b2cbf08e25b..8c6546b42da 100644 --- a/internal/cmd/ghe-feeder/README.md +++ b/internal/cmd/ghe-feeder/README.md @@ -1,3 +1,4 @@ # GHE feeder tool Please see [Handbook entry](https://about.sourcegraph.com/handbook/engineering/distribution/tools/ghe_feeder). +Hello Hello! diff --git a/internal/cmd/init-sg/README.md b/internal/cmd/init-sg/README.md index 23b28fc4c21..e24f7375d51 100644 --- a/internal/cmd/init-sg/README.md +++ b/internal/cmd/init-sg/README.md @@ -77,3 +77,4 @@ The format for the external service json file is as follows, multiple github ext } ] ``` +Hello Hello! diff --git a/internal/cmd/precise-code-intel-tester/README.md b/internal/cmd/precise-code-intel-tester/README.md index 999260db5ec..b714fa038c8 100644 --- a/internal/cmd/precise-code-intel-tester/README.md +++ b/internal/cmd/precise-code-intel-tester/README.md @@ -77,3 +77,4 @@ rm -rf testdata/indexes/ ``` Then rerun the testing steps described above (starting at `clone-and-index.sh`) +Hello Hello! diff --git a/internal/cmd/progress-bot/README.md b/internal/cmd/progress-bot/README.md index d97b5ff5f71..a7d08b683a0 100644 --- a/internal/cmd/progress-bot/README.md +++ b/internal/cmd/progress-bot/README.md @@ -17,3 +17,4 @@ Usage of ./progress-bot: The `progress-bot` is deployed with [this GitHub action](../../../.github/workflows/progress.yml). In order to deploy a new version, first run `docker build -t sourcegraph/progress-bot .` and then `docker push sourcegraph/progress-bot`. +Hello Hello! diff --git a/internal/cmd/resources-report/README.md b/internal/cmd/resources-report/README.md index b5aa90b83fd..642923fa7af 100644 --- a/internal/cmd/resources-report/README.md +++ b/internal/cmd/resources-report/README.md @@ -42,3 +42,4 @@ This bot can be [configured in Slack](https://api.slack.com/apps/A013EETK25V) wi - GCP: Declare resource types to query in [`gcp.go`](./gcp.go)'s `gcpResources` variable. - AWS: Declare queries for resources as functions in [`aws.go`](./aws.go)'s `awsResources` variable. +Hello Hello! diff --git a/internal/cmd/search-blitz/README.md b/internal/cmd/search-blitz/README.md index 730e3c8e936..8412f5d6d87 100644 --- a/internal/cmd/search-blitz/README.md +++ b/internal/cmd/search-blitz/README.md @@ -50,3 +50,4 @@ Logs are rotated every 10 mb. search-blitz calls the GraphQL API with a token of a dedicated user. Credentials: 1password. +Hello Hello! diff --git a/internal/cmd/tracking-issue/README.md b/internal/cmd/tracking-issue/README.md index 12c8aa980e6..b22895d0c8e 100644 --- a/internal/cmd/tracking-issue/README.md +++ b/internal/cmd/tracking-issue/README.md @@ -29,3 +29,4 @@ In order to deploy a new version, first run `docker build -t sourcegraph/trackin Run the tests with `go test`, update fixtures (i.e. GitHub issues and PRs data) with `go test -update.fixture` and update the generated tracking issue golden file with `go test -update`. You can also run the tool manually in `-dry` mode with `-verbose` output to visualize the resulting tracking issues without updating them on GitHub. +Hello Hello! diff --git a/internal/encryption/README.md b/internal/encryption/README.md index a8d019b02a5..d395baa39af 100644 --- a/internal/encryption/README.md +++ b/internal/encryption/README.md @@ -45,3 +45,4 @@ The `encryption.Key` interface was built to be simple, and intended to be extend - AWS KMS - Mounted Key - No Op +Hello Hello! diff --git a/internal/goreman/README.md b/internal/goreman/README.md index a9735f2f374..42edd1d3277 100644 --- a/internal/goreman/README.md +++ b/internal/goreman/README.md @@ -3,3 +3,4 @@ This is a fork of github.com/mattn/goreman at commit d0ee41b21be92ce6fd3e55ad11c This fork turns the command into a library. github.com/mattn/goreman is licensed as MIT. +Hello Hello! diff --git a/lib/README.md b/lib/README.md index 2b2c601122c..095906d2f1e 100644 --- a/lib/README.md +++ b/lib/README.md @@ -3,3 +3,4 @@ This directory is the root of a separate go module from the primary module rooted at sourcegraph/sourcegraph. This module exists to hold code that we want to reuse outside of the sourcegraph/sourcegraph repo. Code in this module should _not_ import from sourcegraph/sourcegraph or from other Sourcegraph repositories to avoid complicated dependency relationships. Instead consider moving code from elsewhere into this module. +Hello Hello! diff --git a/lib/codeintel/lsif/protocol/README.md b/lib/codeintel/lsif/protocol/README.md index 0f55400c3aa..a2b26ec21ca 100644 --- a/lib/codeintel/lsif/protocol/README.md +++ b/lib/codeintel/lsif/protocol/README.md @@ -1,3 +1,4 @@ # LSIF protocol utilities for Go This repository contains LSIF protocol struct definitions. +Hello Hello! diff --git a/lib/codeintel/tools/README.md b/lib/codeintel/tools/README.md index fe23debffac..8e13dec46be 100644 --- a/lib/codeintel/tools/README.md +++ b/lib/codeintel/tools/README.md @@ -135,3 +135,4 @@ This command validates the output of an LSIF indexer. The following properties a ## lsif-visualize Documentation coming soon. +Hello Hello! diff --git a/schema/README.md b/schema/README.md index 798b546e186..860e093dac2 100644 --- a/schema/README.md +++ b/schema/README.md @@ -19,3 +19,4 @@ Sourcegraph uses the following JSON Schemas: ## Known issues - The JSON Schema IDs (URIs) are of the form `https://sourcegraph.com/v1/*.schema.json#`, but these are not actually valid URLs. This means you generally need to supply them to JSON Schema validation libraries manually instead of having the validator fetch the schema from the web. +Hello Hello!