horizonzy / website

etcd.io

Home Page:https://etcd.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

etcd.io

The etcd.io website, built using Hugo and hosted on Netlify.

Build prerequisites

To build and serve the site, you'll need the latest LTS release of Node. Like Netlify, we use nvm, the Node Version Manager, to install and manage Node versions:

$ nvm install --lts

Setup

  1. Clone or download a copy of this repo.
  2. From a terminal window, change to the cloned or unzipped repo directory.
  3. Get NPM packages and git submodules, including the the Docsy theme:
    $ npm install 

Build or serve the site

To locally serve the site at localhost:8888, run the following command:

$ npm run serve

To build and check links, run these commands:

$ npm run build
$ npm run ci-check-links

Note: If you have htmltest in our path, you can run the check-links script instead.

You can also locally serve using Docker:

$ make docker-serve

Contributing

We welcome issues and PRs! For details, see Contributing.

If you submit a PR, Netlify will automatically create a deploy preview so that you can view your changes. Once merged, Netlify automcatically deploys to the production site etcd.io.

Releasing a new version of the etcd documentation

IMPORTANT: this section is out-of-date, see issue #406.

Follow these steps to add documentation for a newly released version of etcd, vX.Y:

  • Recursively copy content/docs/next into content/docs/vX.Y, where vX.Y is the newly released version of etcd. For example:

    cp -r content/docs/next content/docs/v3.5
  • In the _index.md file at the root of the new directory, update the frontmatter to reflect the new version:

    ---
    title: etcd version X.Y
    weight: 1000
    cascade:
      version: vX.Y
    ---
    
  • Add the version to the params.versions.all array in the config.toml configuration file.

  • If the version is meant to be the latest version of etcd, change the params.versions.latest parameter to the desired new version.

  • Submit a pull request with the changes.

About

etcd.io

https://etcd.io

License:Other


Languages

Language:HTML 70.8%Language:SCSS 22.9%Language:Makefile 4.6%Language:Shell 1.7%