This repository contains website source for kyma-project.io
. The website uses GatsbyJS for static site generation and is deployed by Netlify.
NOTE: The project structure, architecture, and other project-specific details are located in the
docs
directory.
Use the following tools to set up the project:
To install all dependencies, run this command:
npm install
Launch the development server with the hot reloading functionality that allows any change in files in the src
folder to be immediately visible in the browser. Run the following command:
npm run develop
To build a production-ready website, run the following command:
npm run build
To serve a production-ready website, run the following command:
npm run serve
To run unit tests, run the following command:
npm run test
To validate TypeScript types as well as document and code linting on the website, run the following command:
make validate