The Sourcegraph handbook describes how we (Sourcegraph teammates) work. Itβs publicly visible because we are an open company.
The handbook is a living document and we expect every teammate to propose improvements, changes, additions, and fixes to keep it continuously up-to-date and accurate.
All content is in Markdown files under the π content folder.
You need NodeJS and Yarn installed. How to do so can vary from machine to machine, but as an example on Ubuntu 20.04:
- Install
nvm
from https://github.com/nvm-sh/nvm - Run
nvm install
from the current directory (if you already have nvm make sure you are using a node version >= v16.14.2) - Run
npm install -g yarn
from the current directory
Install dependencies:
yarn
Then start the handbook:
yarn dev
If you want to fetch GitHub data (used for the recent contributors list on the sidebar), you should set the environment variable GITHUB_TOKEN
to a working personal access token, and set the CONTEXT
environment variable to production
.
You can run the handbook locally using Docker and the included Dockerfile. This won't require you to have a Node environment installed, you'll need only the Docker engine (Linux) or Docker Desktop (Windows and macOS) installed.
After cloning this repository, build the image with:
docker build . -t handbook-builder
Then, you'll need to install dependencies with Yarn. The following command will execute your image in a temporary container, creating a bind mount with the current application directory mapped to /app
inside the container.
docker run -it --rm --mount type=bind,source="$(pwd)",target=/app handbook-builder yarn
With the dependencies installed, you can run the development environment to preview the handbook on your browser.
Use the following command to create the mount and redirect all connections on port 8000
of the host machine to port 3000
inside the container, where the application is running:
docker run -it --rm --mount type=bind,source="$(pwd)",target=/app -p 8000:3000 handbook-builder yarn dev
You can now access the application on http://localhost:8000
. Any changes made to the handbook will be automatically reflected on the preview.
There are special tokens within some markdown pages ({{generator:*}}
) that are filled at build time from the YAML files in the data folder. The code which does this the filling is in [src/lib/generatedMarkdown.ts], and these are called as part of the markdown pipeline in src/lib/markdownToHtml.ts
.
We use markdown-link-check for link checking at build time in the link-check
GitHub action. If you want to run it locally, from the root of the repository you can run this command:
yarn check-links
This can be slow, so you can also check a single file by running this command, replacing path_to_file
with the file you want to validate:
yarn markdown-link-check <path_to_file>
Note that this will also check external links, which the GitHub action ignores. If you wish to ignore those, add -c .github/workflows/link-check-internal.json
to the command.
During deployment, the netlify-build
script gets executed. To simulate the build process, you can run it locally:
yarn netlify-build
The output will be in the out
directory.
The repository is configured to automatically deploy the main
branch to production on Netlify.