This repo houses the assets used to build the website at https://vitess.io.
NOTE: This repo uses
prod
as the default branch rather than the usualmaster
. Make sure to rebase against theprod
branch if you have existing work branched frommaster
. See issue #210 for an explanation of why this was done.
To run the website locally, you need to have the Hugo static site generator installed (installation instructions here). Once Hugo is installed run the following:
hugo server --buildDrafts --buildFuture
This starts Hugo in local mode. You can see access the site at http://localhost:1313.
You will also need to either:
- install
npm
and runnpm install
or, - install and run
yarn
If you'd like to add your logo to the Who uses Vitess section of the website, add a PNG, JPEG, or SVG of your logo to the static/img/logos/users
directory in this repo and submit a pull request with your change. Name the image file something that reflects your company (e.g., if your company is called Acme, name the image acme.png
).
You can check the site's internal links by running make check-internal-links
and all links—internal and external—by running make check-all-links
.