The CockroachDB docs are open source just like the database itself. We welcome your contributions!
-
Install Jekyll. CockroachDB uses Jekyll to transform markdown and layout files into a complete, static HTML site. You need to install Jekyll so you can view doc changes locally.
-
Install HTMLProofer. This tool lets you check the HTML generated by Jekyll for errors (broken internal and external links, missing images, etc.).
-
Learn the essentials of our Docs Structure.
-
Review our simple Style Guide.
Once you're ready to contribute:
-
Fork the CockroachDB docs repository.
-
Create a local clone of your fork.
-
Make your changes.
-
Back in the CockroachDB docs repo, open a pull request and assign it to
jseldess
.
We'll review your changes, providing feedback and guidance as necessary. Also, Teamcity, the system we use to automate tests, will run the markdown files through Jekyll and then run HTMLProofer against the resulting HTML output to check for errors. Teamcity will also attempt to sync the HTML to an AWS server, but since you'll be working on your own fork, this part of the process will fail; don't worry about the Teamcity fail status.
If you want to regularly contribute to the CockroachDB docs, there are a few things we recommend:
-
Note that our "master" branch is called
gh-pages
. -
Make it easy to bring updated docs into your fork by tracking us upstream:
$ git remote add --track gh-pages upstream https://github.com/cockroachdb/docs.git
-
When you're ready to make your next round of changes, get our latest docs:
$ git fetch upstream $ git merge upstream/gh-pages
-
Repeat the write, build, push, pull flow from the Get Started section above.
Each docs page must be an .md
file in the root directory of the repository, must be written in the kramdown dialect of Markdown, and must start with the following front-matter:
---
title: Title of Page
summary: Short description of page for SEO
toc: false
---
title
: Used as the h1 header.summary
: Used as the page'smeta description
for SEO. Keep this under 155 characters. Consider using the first sentence of the page, or something similar.toc
: Adds an auto-generated table of contents to the page. See Page TOC for full details.
Optionally, you can specify in the front-matter a list of allowed hashes
that don't correspond to a section heading on the page. This is
currently used for pages with JavaScript toggle buttons, where the
toggle to activate by default can be specified in the URL hash. If you
attempt to link to, for example, page-with-toggles.html#toggle-id
without
listing toggle-id
in allowed_hashes
, our HTML proofer will complain
that toggle-id
does not exist on the page. Listing a hash in
allowed_hashes
will generate a dummy element with that ID at the top
of the page, which keeps our HTML proofer happy.
Here's an example from a page with OS toggles:
allowed_hashes: [os-mac, os-linux, os-windows]
The CockroachDB Jekyll theme can auto-generate a page-level table of contents listing all h2 headers or all h2 and h3 headers on the page. Related files: js/toc.js
and _includes/toc.html
.
-
To add a page TOC to the very top of the page, set
toc: true
in the page's front-matter. -
To add a page TOC anywhere else on the page (for example, after an intro paragraph), set
toc: false
in the page's front-matter and add the following HTML where you want the toc to appear on the page:<div id="toc"></div>
-
To omit a page TOC from the page, set
toc: false
in the page's front-matter.
By default, a page TOC includes h2 and h3 headers. To limit a page TOC to h2 headers only, set toc_not_nested: true
in the page's front-matter.
The _data/sidebar_doc.yml
YAML file controls which pages appear in the docs sidebar. If you're adding a page that you think should appear in the sidebar, please mention this in your pull request.
For each item in the sidebar, there are three possible YAML fields:
Field | Description |
---|---|
title |
The page title, as displayed in the sidebar. This can be different from the actual page title. |
url |
The URL of the page to link to, formatted as /<page-name>.html , e.g., /learn-cockroachdb-sql.html . |
alternate_urls |
The URLs of other pages that should highlight this title in the sidebar, as a comma-separated list within square brackets, e.g., [/build-a-go-app-with-cockroachdb-gorm.html] . It's possible to list alternate URLs one-per-line, indented appropriately, but for now, it's recommended to use the bracketed list format instead. |
Some pages auto-include content from the _includes
directory. For example, each SQL statement page inludes a syntax diagram from _includes/sql/diagrams
, and the build-an-app-with-cockroachdb.md tutorials include code samples from _includes/app
.
The syntax for including content is {% include <filepath> %}
, for example, {% include app/basic-sample.rb %}
.
- Install asciinema.
- Size your shell window to be a bit narrowing than our code blocks.
- Initiate an asciicast with
asciinema rec -c "/bin/bash -l"
. This makes the asciicast use your shell's appearance. - Press CTRL + D to stop recording.
- Press Enter to upload the recording to asciinema.
- Click Download.
- Rename the
.json
asciicast file and place it in the/asciicasts
directory. - On the page, set
asciicast: true
in the front-matter. - On the page, include the following html where you want the asciicast to appear. Change the
src
filepath as relevant, and changeposter
to the time in the asciicast that you want to use as the static image. For other details about customizing the asciicast appearance, see the asciinema README.
<asciinema-player class="asciinema-demo" src="asciicasts/start-a-local-cluster.json" cols="107" speed="2" theme="solarized-dark" poster="npt:0:30" title="Start a Local Cluster"></asciinema-player>
We show "Yes/No" feedback buttons at the bottom of every page by default. To remove these buttons from a page, set feedback: false
in the page's front-matter.
We show "Contribute" options in the top-right of every page by default. To remove these options from a page, set contribute: false
in the page's front-matter.
We use Optimizely to A/B test changes across our website. To include a page in A/B testing, you must add the necessary JavaScript by setting optimizely: true
in the page's front-matter.
CockroachDB docs should be:
- Clear
- Correct
- Concise
To enable this, we have the following specific guidance:
- Use the imperative present tense, also known as "imperative mood."
- Use active voice instead of passive. Purdue Online Writing Lab resource
- Prefer periods over semicolons.
We also have additional guidance to ensure consistency with our existing documents.
Code samples are marked with an opening and closing set of 3 tildes (~~~
). Shell and SQL commands should be syntax highlighted where appropriate using the following info.
Start shell code samples with ~~~ shell
followed by a line break. The first character of the next line must be the terminal marker $
.
SQL code samples are broken into two sections: commands and responses.
-
Commands (e.g.,
SELECT
,CREATE TABLE
) should begin with~~~ sql
followed by a line break. The first character of the next line must be the terminal marker>
. -
Responses (e.g., retrieved tables) should begin with
~~~
but should not be syntax highlighted.Note that not all responses warrant inclusion. For example, if a SQL code sample shows
CREATE TABLE
,INSERT
, and thenSELECT
, it's unnecessary to show the responses forCREATE TABLE
(which is justCREATE TABLE
) andINSERT
(which is justINSERT <number of rows>
).
Our docs use three classes of highlighted text.
NOTE: The text of notes, warnings, and tips must be formatted in HTML instead of Markdown/Kramdown.
Use notes to call attention to a piece of clarifying information; this information should not be crucial to accomplishing the task in the document.
For example, you might use a note to let users know that the DELETE
statement only deletes rows and that to delete columns you must use ALTER TABLE
. This helps clarify DELETE
's purpose and point misguided users to the right place.
To insert a note, use the following code:
{{site.data.alerts.callout_info}} <tip text goes here> {{site.data.alerts.end}}
Use warning to express that a piece of information is critical to understand to prevent unexpected things from happening.
For example, you might include a warning that using CASCADE
in DROP INDEX
drops dependent objects without warning. This is critical to prevent users from unexpectedly losing constraints or additional indexes.
To insert a warning, use the following code:
{{site.data.alerts.callout_danger}} <warning text goes here> {{site.data.alerts.end}}
Use tips to highlight nice-to-know pieces of information.
For example, you might include a tip to our Github repo's Terraform scripts on the Google Cloud Engine deployment page. It's nice to know it's there, but doesn't clarify anything nor is it critical.
To insert a tip, use the following code:
{{site.data.alerts.callout_success}}{{site.data.alerts.end}}
Once you've installed Jekyll and have a local clone of the docs repository, you can build and test the docs as follows:
-
From the root directory of your clone, run:
$ jekyll serve
-
Point your browser to
http://127.0.0.1:4000/docs/
and manually check your changes.-
If the page you want to test isn't listed in the sidebar, just point to it directly, for example,
http://127.0.0.1:4000/docs/new-page.html
. -
When you make additional changes, Jekyll automatically regenerates the HTML content. No need to stop and re-start Jekyll; just refresh your browser.
Once you're done viewing your changes, use CTRL + C to stop the Jekyll server.
-
-
Run automated tests against the Jekyll-generate HTML files to check for problems (broken links, missing alt texts for images, etc.):
$ htmlproofer ./_site --allow-hash-href true