There are two ways to work on CircleCI docs locally: with Docker and with Ruby/Bundler.
- Install Docker for your platform: https://docs.docker.com/engine/install/
- Clone the CircleCI docs repo:
git clone https://github.com/circleci/circleci-docs.git
- Start Docker Desktop
- Add the following line to your
/etc/hosts
file:127.0.0.1 ui.circleci.com
- Run
yarn install
to fetch dependencies (Learn how to install yarn on your machine here.) - Run
yarn start
to create needed js assets & build the static site in Docker (Warning: This may take up to 10 minutes to build) - The docs site will now be running on https://ui.circleci.com/docs/. If the browser presents to you an HSTS Security Warning, you can safely bypass it as it is an expected outcome of running the Caddy Reverse Proxy in Docker.
- To gracefully stop the running commands you can CTRL-C.
Note: In the event you find yourself needing to cleanup docker/jekyll cache, you can use the yarn clean
command.
If you already have a stable Ruby environment (currently Ruby 2.7.4) and feel comfortable installing dependencies, install Jekyll by following this guide.
Check out the Gemfile for the Ruby version we're currently using. We recommend RVM for managing multiple Ruby versions.
We also use a gem called HTMLProofer to test links, images, and HTML. The docs site will need a passing build to be deployed, so use HTMLProofer to test everything before you push changes to GitHub.
You're welcome to use Bundler to install these gems.
Our js assets are compiled by webpack and put into a place where the jekyll build can find them.
Anytime you are working on js be sure to run:
$ yarn install
$ yarn start
To get a local copy of our docs, run the following commands:
git clone https://github.com/circleci/circleci-docs.git
git clone --recurse-submodules https://github.com/circleci/circleci-docs.git
cd circleci-docs/jekyll
JEKYLL serve -Iw
Jekyll will build the site and start a web server, which can be viewed in your browser at http://localhost:4000/docs/. -w
tells Jekyll to watch for changes and rebuild, while -I
enables an incremental rebuild to keep things efficient.
For more info on how to use Jekyll, check out their docs.
Prerequisites:
- Installed npm packages at the root of the repository
yarn install
- Installed gems at the root of the repository
bundle install
You can lint the markdown using the markdownlint-cli2
.PATH=$(yarn bin):$PATH markdownlint-cli2 jekyll/_cci2/*.md
You can also autofix the issues by adding fix: true
to the configuration file .markdownlint-cli2.jsonc
.
If you want to work on the way search works on docs, follow the below instructions.
- Create your own algolia account to use for development
- Either take your admin API key for your account, or create an API key with write permissions. Create a file
./jekyll/_algolia_api_key
with the API key as its content. - Update the
application_id
andapi_key
fields in the algolia section of./jekyll/_config.yml
to match your own account. Do not commit these changes. - Index the blog content to your own account via
bundle exec jekyll algolia
. If you have docs running in a container via docker compose, you can rundocker exec -it circleci-docs_jekyll_1 /bin/bash
to SSH into the container, cd into./jekyll
and run the aforementioned command. You will see an error regarding the number of records being too high - this shouldn't matter for development, just be aware the search index you're using locally is incomplete. - You should now be able to search your own index via the locally running docs.
The docs site includes Bootstrap 3, JS, and CSS, so you'll have access to all of its reusable components.
All docs live in folders named after the version of CircleCI. The only one you need to worry about is jekyll/_cci2
or jekyll/_cci2_ja
if you want to work on our translated content. .
-
Create a branch and switch to it:
git checkout -b <branch-name>
-
Add or modify Markdown files in these directories according to our style guide.
-
When you're happy with your changes, commit them with a message summarizing what you did:
git commit -am "commit message"
-
Push your branch up:
git push origin <branch-name>
New articles can be added to the jekyll/_cci2 directory in this repo.
When you make a new article, you'll need to add front matter. This contains metadata about the article you're writing and is required so everything works on our site.
Front matter for our docs will look something like:
---
layout: classic-docs
title: "Your Doc Title"
short-title: "Short Title"
categories: [category-slug]
order: 10
---
layout
and title
are the only required variables. layout
describes visual settings shared across our docs. title
will appear at the top of your article and appear in hypenated form for the URL.
The remaining variables (categories
, short-title
, and order
) are deprecated and no longer used in documentation. Navigation links to each article are manually added to category landing pages. If you're having trouble deciding where to put an article, a CircleCI docs lead can help.
Jekyll will automatically convert your article's title into a level one heading (#), so we recommend using level two (##), level three (###) and level four (####) headings when structuring your article.
If your article has more than three headings after the title, please use a table of contents. To add a table of contents, use the following reference name:
* TOC
{:toc}
This will create an unordered list for every heading level in your article (the * TOC
line will not display).
If you want to exclude a heading from a TOC, you can specify that with another reference name:
# Not in the TOC
{:.no_toc}
If you want to submit a pull request to update the docs, you'll need to make a fork of this repo and follow the steps in Local Development with Docker above. After you are finished with your changes, please follow our Contributing Guide to submit a pull request.
The Docker tag list for convenience images, located in ./jekyll/_cci2/circleci-images.md, is dynamically updated during a CircleCI build.
There's usually no need to touch this.
If you'd like to see an updated list generated locally however, you can do so by running ./scripts/pull-docker-image-tags.sh
from the root of this repo.
Note that you'll need the command-line tool jq installed.
Our API is handled in two possible places currently:
- Old version - This currently accessible via the CircleCI landing page > Developers Dropdown > "Api"
- New Version using Slate - A newer API guide, built with Slate
What is Slate?
Slate is a tool for generating API documentation. Slate works by having a user
clone or fork its Github Repo, having the user fill in the API spec into a
index.html.md
file, and then generating the static documentation using Ruby
(via bundler
).
How do we use Slate?
We have cloned slate into our docs repo ("vendored" it) so that the whole
project is available under circleci-docs/src-api
. Because Slate is not a
library, it is required that we vendor it and use its respective build
steps to create our API documentation.
Making changes to the documentation
When it comes time to make changes to our API, start with the following:
- All changes to the API happen in
circleci-docs/src-api/source/
folder. - Our API documentation is broken up into several documents in the
source/includes
folder. For example, all API requests related toProjects
are found in thecircleci-docs/src-api/source/includes/_projects.md
file. - Within the
/source
folder, theindex.html.md
has anincludes
key in the front matter. The includes key gathers the separated files in theincludes
folder and merges them into a single file at build time. - Because Slate builds the entire API guide into a single html file, we can view the artifact file on CircleCI whenever a build is run.
The following is an example workflow to contribute to a document (from Github, no less):
- Navigate to the file you want to edit (example:
src-api/source/includes/_projects.md
) - Click the
edit
button on GitHub and make your changes. - Commit your changes and submit a PR.
- Go to the CircleCI web app, find the build for the latest commit for your PR
- Go to the
Artifacts
tab and navigate tocircleci-docs/api/index.html
to view the built file.
Local Development with Slate
- If you want to see your changes live before committing them,
cd
intosrc-api
and runbundle install
followed bybundle exec middleman server
. - You may need a specific version of Ruby for bundler to work (2.3.1).
If your branch ends with -preview
and passed all tests, docs pages are automatically deployed to our preview site. The link to the preview site will appear at the end deploy-preview
job in CircleCI.
Note that preview deploys will be automatically cleaned up after certain time so that you don't have to do it manually.
We use browserslist-ga-export
to generate a browserslist custom usage data file based on Google Analytics data. In order to do this, you must provide a CSV export of a Google Analytics custom report:
- In Google Analytics, create a custom report as explained here. Make sure you choose one year as the desired date range.
- Export the custom report as a CSV like explained here.
- Locally, install
browserlist-ga-export
- Run
browserslist-ga-export --reportPath YOUR_CSV_LOCATION.csv
at the root of the project. You should see this message when it is done:browserslist-ga-export: browserslist-stats.json has been updated.
- run
npx browserslist
to confirm the newbrowserlist-stats.json
is still valid.