Skip to content

Latest commit

History

History
28 lines (17 loc) 路 1.51 KB

README.md

File metadata and controls

28 lines (17 loc) 路 1.51 KB

Netlify Status

Kubernetes Community Days website

This repo houses the assets used to build the Kubernetes Community Days (KCD) site at https://kubernetescommunitydays.org.

If you're interested in organizing your own KCD event, visit the Organizing page of the site for requirements and instructions.

Running the site locally

You can run the KCD site in your local environment if you have the following installed:

  • The Hugo static site generator. Installation instructions are here. Make sure to install the version specified in the netlify.toml configuration file.
  • The Yarn dependency management tool for JavaScript and other assets. Installation instructions are here.

On a Mac with Homebrew already installed, these instructions can be summarized as brew install hugo yarn.

Once those tools are installed, run these commands to view the site locally:

# Install Sass and other dependencies
yarn

# Run Hugo in "server" mode
hugo server --buildDrafts --buildFuture

Open your browser to http://localhost:1313 to view the site. When you make changes to the source files, the site updates in real time, including a browser refresh.