diff --git a/README.md b/README.md index 35ae281808b..34b22271cd7 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 World diff --git a/client/README.md b/client/README.md index 5b55f0d04f0..38a2873d15a 100644 --- a/client/README.md +++ b/client/README.md @@ -28,3 +28,4 @@ 6. Packages should use package name (e.g. `@sourcegraph/wildcard`) for imports instead of the relative paths (e.g. `../../../../wildcard/src/components/Markdown`) to avoid long relative-paths and make dependency graph between packages clear. (Typescript will warn if packages have circular dependencies). It's easy to refactor such isolated packages, extract functionality into new ones, or even into new repositories. 7. **build** or **config** package should be added later to encapsulate all the configurations reused between packages which will allow removing `jest.config`, `babel.config` from the root of the repo. +Hello World diff --git a/client/branded/README.md b/client/branded/README.md index d1b914aa2db..2c572057c55 100644 --- a/client/branded/README.md +++ b/client/branded/README.md @@ -2,3 +2,4 @@ This folder contains client code that is **branded**, i.e. it implements the vis Code in here can use Bootstrap and must not adapt styles of the code host (for more details, see [Styling UI in the handbook](https://about.sourcegraph.com/handbook/engineering/web/styling)). Any code that is code host agnostic should go into [`../shared`](../shared) instead. +Hello World diff --git a/client/browser/README.md b/client/browser/README.md index a71abe673cc..3077a21579a 100644 --- a/client/browser/README.md +++ b/client/browser/README.md @@ -227,3 +227,4 @@ Use this process to create a source code zip to attach to a Firefox add-on submi cd client/browser yarn run create-source-zip ``` +Hello World diff --git a/client/browser/src/browser-extension/web-extension-api/README.md b/client/browser/src/browser-extension/web-extension-api/README.md index 6a4ae050e41..46e2fa66add 100644 --- a/client/browser/src/browser-extension/web-extension-api/README.md +++ b/client/browser/src/browser-extension/web-extension-api/README.md @@ -1,3 +1,4 @@ # Browser APIs This directory contains a set of helper functions that wrap the [APIs](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API) exposed by the browser to browser extensions. This originally came about while implementing support for Safari. Rather than write an entirely new extension, we wrapped the APIs and implemented pseudo support for these APIs in Safari. At this time, we no longer support Safari, however we have kept these because there are still differences in the APIs between Chrome and Firefox. This abstraction also allowed us to have a more type safe interaction with the APIs in actual application code. +Hello World diff --git a/client/eslint-plugin-sourcegraph/README.md b/client/eslint-plugin-sourcegraph/README.md index 21f35788c25..20b9c211bf6 100644 --- a/client/eslint-plugin-sourcegraph/README.md +++ b/client/eslint-plugin-sourcegraph/README.md @@ -28,3 +28,4 @@ Unit tests can be run with: ```sh yarn test ``` +Hello World diff --git a/client/extension-api-types/README.md b/client/extension-api-types/README.md index d8b11e4d066..db721355f82 100644 --- a/client/extension-api-types/README.md +++ b/client/extension-api-types/README.md @@ -4,3 +4,4 @@ Extensions should use the `sourcegraph` package, not this package. This package that embed Sourcegraph extensions and need to communicate with them. See [Sourcegraph extensions documentation](https://docs.sourcegraph.com/extensions) for more information. +Hello World diff --git a/client/extension-api/README.md b/client/extension-api/README.md index b7f57925107..568e7e1b859 100644 --- a/client/extension-api/README.md +++ b/client/extension-api/README.md @@ -7,3 +7,4 @@ This package contains only the types for the [Sourcegraph extension API](https://unpkg.com/sourcegraph/dist/docs/index.html) ([`sourcegraph.d.ts`](https://github.com/sourcegraph/sourcegraph/blob/main/packages/extension-api/src/sourcegraph.d.ts)). See [Sourcegraph extensions documentation](https://docs.sourcegraph.com/extensions) for more information. +Hello World diff --git a/client/shared/README.md b/client/shared/README.md index 7fa344eb29c..8eb7cd2609b 100644 --- a/client/shared/README.md +++ b/client/shared/README.md @@ -5,3 +5,4 @@ In particular, components cannot make use of Bootstrap classes, but must accept For more details, see [Styling UI in the handbook](https://about.sourcegraph.com/handbook/engineering/web/styling). Code that is only used in branded contexts (web app, options menu of the browser extension, ...) should go into [`../branded`](../branded) instead. +Hello World diff --git a/client/shared/src/testing/integration/README.md b/client/shared/src/testing/integration/README.md index 4443e3fdebf..dd460eb9e18 100644 --- a/client/shared/src/testing/integration/README.md +++ b/client/shared/src/testing/integration/README.md @@ -3,3 +3,4 @@ This folder contains shared testing helpers for the Sourcegraph webapp and browser extensions. For more information about integration tests and how to run them, read the [Client integration tests documentation](https://docs.sourcegraph.com/dev/testing#client-integration-tests). +Hello World diff --git a/client/storybook/README.md b/client/storybook/README.md index 66b2cac38f0..7e39ad95908 100644 --- a/client/storybook/README.md +++ b/client/storybook/README.md @@ -50,3 +50,4 @@ The [DLL Plugin](https://webpack.js.org/plugins/dll-plugin/) is used to move mos 7. Storybook development server starts 🎉. If DLL bundle and Webpack stats are in place, all intermediate steps are skipped straight to the start of Storybook development server. +Hello World diff --git a/client/web/README.md b/client/web/README.md index 3f10a9b76f8..b66827d45ac 100644 --- a/client/web/README.md +++ b/client/web/README.md @@ -45,3 +45,4 @@ Build artifacts will be served from `/ui/assets`. In both environments, server proxies API requests to `SOURCEGRAPH_API_URL` provided as the `.env` variable. To avoid the `CSRF token is invalid` error CSRF token is retrieved from the `SOURCEGRAPH_API_URL` before the server starts. Then this value is used for every subsequent request to the API. +Hello World diff --git a/client/web/src/components/README.md b/client/web/src/components/README.md index 8a178569b43..ab398dfbd92 100644 --- a/client/web/src/components/README.md +++ b/client/web/src/components/README.md @@ -1 +1,2 @@ Components that are shared through the app +Hello World diff --git a/client/web/src/regression/README.md b/client/web/src/regression/README.md index 64b14364568..258ae5e174a 100644 --- a/client/web/src/regression/README.md +++ b/client/web/src/regression/README.md @@ -105,3 +105,4 @@ Test best practices: test users easy to clean up manually if necessary. - **Ask for help**: Regression tests are intended to be relatively easy and straightforward to write. If you find yourself spending a lot of time implementing simple behavior, file an issue and tag @beyang. +Hello World diff --git a/client/web/src/search/README.md b/client/web/src/search/README.md index b9c63c97e40..a4d900e7294 100644 --- a/client/web/src/search/README.md +++ b/client/web/src/search/README.md @@ -1 +1,2 @@ Components for search UI in the app. +Hello World diff --git a/client/web/src/search/results/README.md b/client/web/src/search/results/README.md index 6885a6baa91..90471769a8b 100644 --- a/client/web/src/search/results/README.md +++ b/client/web/src/search/results/README.md @@ -1 +1,2 @@ Components for the search results page +Hello World diff --git a/client/wildcard/README.md b/client/wildcard/README.md index fa29fda42b6..e73c7553109 100644 --- a/client/wildcard/README.md +++ b/client/wildcard/README.md @@ -13,3 +13,4 @@ The Wildcard component library is a collection of design-approved reusable compo Reusable React hooks. Typically utilities or headless components See [Wildcard documentation](https://docs.sourcegraph.com/dev/background-information/web/wildcard) for more information. +Hello World diff --git a/cmd/frontend/README.md b/cmd/frontend/README.md index 1593ac188b0..5add5bfb209 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 World diff --git a/cmd/github-proxy/README.md b/cmd/github-proxy/README.md index 18dd0abba9c..4beab2f9e0e 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 World diff --git a/cmd/gitserver/README.md b/cmd/gitserver/README.md index b8c36d5d744..bc9d1d17877 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 World diff --git a/cmd/query-runner/README.md b/cmd/query-runner/README.md index 36dd592335e..57a20fb6fb1 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 World diff --git a/cmd/repo-updater/README.md b/cmd/repo-updater/README.md index d10ccfe152a..40d72e4b61c 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 World diff --git a/cmd/searcher/README.md b/cmd/searcher/README.md index 4b711a58ef4..0374ab9fb51 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 World diff --git a/cmd/symbols/README.md b/cmd/symbols/README.md index fe0a26db966..1642de3349e 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 World diff --git a/cmd/worker/README.md b/cmd/worker/README.md index d28554f3ab5..723873b197e 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 World diff --git a/dev/auth-provider/README.md b/dev/auth-provider/README.md index b14f59d2857..8dc07573cc7 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 World diff --git a/dev/ci/test/README.md b/dev/ci/test/README.md index a1be0540d16..5284a421a1b 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 World diff --git a/dev/depgraph/README.md b/dev/depgraph/README.md index 1a458fbde89..ed63b5d6aa5 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 World diff --git a/dev/gqltest/README.md b/dev/gqltest/README.md index 92020c213d2..db52ce017e3 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 World diff --git a/dev/prometheus/README.md b/dev/prometheus/README.md index 4b66da659be..78c966a3d05 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 World diff --git a/dev/release/README.md b/dev/release/README.md index 9cdab5f6e2b..4334b93cd1e 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 World diff --git a/dev/sg/README.md b/dev/sg/README.md index f15d733abc7..6f7faf43a06 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 World diff --git a/dev/sg/root/README.md b/dev/sg/root/README.md index b3c285e0118..917e7f9a11c 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 World diff --git a/dev/tilt/README.md b/dev/tilt/README.md index 5f7de89a47d..a4ce13ae6a2 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 World diff --git a/dev/zoekt/README.md b/dev/zoekt/README.md index ddbbeb34848..26503e619f4 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 World diff --git a/docker-images/README.md b/docker-images/README.md index 6e23b2cde20..0f2d25989dc 100644 --- a/docker-images/README.md +++ b/docker-images/README.md @@ -30,3 +30,4 @@ Note: `$MY_VERSION` above should reflect the underlying Alpine version. If chang 1. Create a `build.sh` and add your publishing script to it - the script should end with `docker tag ... "$IMAGE"`. See the scripts in this directory for examples. 2. Ensure your new script is executable with `chmod +x build.sh` (you can try it via e.g. `IMAGE=fake-repo/cadvisor:latest docker-images/$SERVICE/build.sh`, or by [building a test image](https://about.sourcegraph.com/handbook/engineering/deployments#building-docker-images-for-a-specific-branch)) 3. Add an image to the automated builds pipeline by adding it to [`SourcegraphDockerImages`](https://sourcegraph.com/search?q=repo:%5Egithub%5C.com/sourcegraph/sourcegraph%24+file:%5Eenterprise/dev/ci/images/images%5C.go+SourcegraphDockerImages&patternType=literal). +Hello World diff --git a/docker-images/cadvisor/README.md b/docker-images/cadvisor/README.md index 38d5138cbff..2429c0cdd0d 100644 --- a/docker-images/cadvisor/README.md +++ b/docker-images/cadvisor/README.md @@ -1,3 +1,4 @@ # Sourcegraph cAdvisor Learn more about the Sourcegraph cAdvisor distribution in the [cAdvisor documentation](https://docs.sourcegraph.com/dev/background-information/observability/cadvisor). +Hello World diff --git a/docker-images/grafana/README.md b/docker-images/grafana/README.md index dcdc66012fa..02597c8c4cc 100644 --- a/docker-images/grafana/README.md +++ b/docker-images/grafana/README.md @@ -24,3 +24,4 @@ will be detected automatically while Grafana is running. More behavior can be controlled with [environmental variables](https://grafana.com/docs/installation/configuration/). +Hello World diff --git a/docker-images/ignite-ubuntu/README.md b/docker-images/ignite-ubuntu/README.md index 8ead8072a60..8ea3454169f 100644 --- a/docker-images/ignite-ubuntu/README.md +++ b/docker-images/ignite-ubuntu/README.md @@ -3,3 +3,4 @@ We produce a version of Ubuntu 20.04 (Focal Fossa) based on [weaveworks/ignite-ubuntu:20.04-amd64](https://github.com/weaveworks/ignite/blob/46bdd5d48425c4245fbe895e7da3621f491c3660/images/ubuntu/Dockerfile) that also contains the Docker distribution. This image serves as the base image for [Firecracker](https://github.com/firecracker-microvm/firecracker) virtual machines in which we run user configured containers and code. +Hello World diff --git a/docker-images/prometheus/README.md b/docker-images/prometheus/README.md index fdbeb914745..2e90de0dae9 100644 --- a/docker-images/prometheus/README.md +++ b/docker-images/prometheus/README.md @@ -29,3 +29,4 @@ You can specify additional flags to pass to Prometheus by setting the environmen `prom-wrapper` also accepts a few configuration options through environment variables - see [`cmd/prom-wrapper/main.go`](./cmd/prom-wrapper/main.go) for more details. Alertmanager components can be disabled entirely with `DISABLE_ALERTMANAGER=true`. +Hello World diff --git a/docker-images/prometheus/cmd/prom-wrapper/README.md b/docker-images/prometheus/cmd/prom-wrapper/README.md index 29266f25a1c..5fc94a815e0 100644 --- a/docker-images/prometheus/cmd/prom-wrapper/README.md +++ b/docker-images/prometheus/cmd/prom-wrapper/README.md @@ -1,3 +1,4 @@ # prom-wrapper Prom-wrapper is a service that ships with the [Sourcegraph Prometheus image](https://docs.sourcegraph.com/dev/background-information/observability/prometheus). +Hello World diff --git a/enterprise/README.md b/enterprise/README.md index 8761c91da46..65d532dc275 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 World diff --git a/enterprise/cmd/executor/README.md b/enterprise/cmd/executor/README.md index 5677dd7e3ac..222b60acae9 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 World diff --git a/enterprise/cmd/frontend/internal/executorqueue/README.md b/enterprise/cmd/frontend/internal/executorqueue/README.md index abb399476eb..acaf0b3d8ab 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 World diff --git a/enterprise/cmd/precise-code-intel-worker/README.md b/enterprise/cmd/precise-code-intel-worker/README.md index 482d9e5ae59..0cdbb6e5e68 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 World diff --git a/enterprise/cmd/server/README.md b/enterprise/cmd/server/README.md index 57bab3be27e..ab2d97fd82e 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 World diff --git a/enterprise/cmd/worker/README.md b/enterprise/cmd/worker/README.md index eebd59c2283..c5677cee5fb 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 World diff --git a/enterprise/dev/ci/README.md b/enterprise/dev/ci/README.md index 71c66002836..d1fb26afbbc 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 World diff --git a/internal/cmd/ghe-feeder/README.md b/internal/cmd/ghe-feeder/README.md index b2cbf08e25b..ed181c80bd2 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 World diff --git a/internal/cmd/init-sg/README.md b/internal/cmd/init-sg/README.md index 23b28fc4c21..af9161d6c67 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 World diff --git a/internal/cmd/precise-code-intel-tester/README.md b/internal/cmd/precise-code-intel-tester/README.md index 999260db5ec..278d187fc92 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 World diff --git a/internal/cmd/progress-bot/README.md b/internal/cmd/progress-bot/README.md index d97b5ff5f71..cb32e52f0c9 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 World diff --git a/internal/cmd/resources-report/README.md b/internal/cmd/resources-report/README.md index b5aa90b83fd..85bc9041df4 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 World diff --git a/internal/cmd/search-blitz/README.md b/internal/cmd/search-blitz/README.md index 730e3c8e936..b4449f6bb5d 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 World diff --git a/internal/cmd/tracking-issue/README.md b/internal/cmd/tracking-issue/README.md index 12c8aa980e6..5be8040e0e4 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 World diff --git a/internal/encryption/README.md b/internal/encryption/README.md index a8d019b02a5..decb16872fc 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 World diff --git a/internal/goreman/README.md b/internal/goreman/README.md index a9735f2f374..8447ffa039f 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 World diff --git a/lib/README.md b/lib/README.md index 2b2c601122c..9e76ba8c9f2 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 World diff --git a/lib/codeintel/lsif/protocol/README.md b/lib/codeintel/lsif/protocol/README.md index 0f55400c3aa..5d4b1c5249c 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 World diff --git a/lib/codeintel/tools/README.md b/lib/codeintel/tools/README.md index fe23debffac..d2cdc36d7a8 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 World diff --git a/migrations/README.md b/migrations/README.md index 20686a74b7f..a619a526e70 100644 --- a/migrations/README.md +++ b/migrations/README.md @@ -145,3 +145,4 @@ If the schema for database `` with the schema version table ` set version=$VERSION, dirty=false;`. - Restart frontend pods. +Hello World diff --git a/monitoring/README.md b/monitoring/README.md index 36dae2975fe..813ec9f2f9f 100644 --- a/monitoring/README.md +++ b/monitoring/README.md @@ -27,3 +27,4 @@ The Sourcegraph monitoring generator consists of three components: This is where the API for service monitoring definitions is defined, as well as the generator code that provides [its features](https://docs.sourcegraph.com/dev/background-information/observability/monitoring-generator#features). All features and capabilities for developed for the generator should align with the [Sourcegraph monitoring pillars](https://about.sourcegraph.com/handbook/engineering/observability/monitoring_pillars). +Hello World diff --git a/monitoring/monitoring/README.md b/monitoring/monitoring/README.md index eb2f26e78f0..2ce50c4cd92 100755 --- a/monitoring/monitoring/README.md +++ b/monitoring/monitoring/README.md @@ -10,3 +10,4 @@ For more details about this package, refer to the [API documentation](https://so To learn more about developing monitoring for Sourcegraph, refer to [the observability developer's guide](https://docs.sourcegraph.com/dev/background-information/observability). To learn more about the Sourcegraph monitoring generator, refer to [the monitoring generator overview](https://docs.sourcegraph.com/dev/background-information/observability/monitoring-generator). +Hello World diff --git a/schema/README.md b/schema/README.md index 798b546e186..5f55702e78b 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 World