If you like Kubesimplify, please ★ this repository to show your support! 🤩
This repository contains the assets required to build the Kubesimplify website and documentation. We're glad that you want to contribute!
We're a warm and welcoming community of open source contributors. Please join. All types of contributions are welcome. Be sure to read the Kubesimplify CONTRIBUTING.md for a tour of resources available to you and how to get started. This is the source code of the official Kubesimplify's website.
For new developers getting started, here are some instructions to follow: Fork the repo by clicking the fork button. This will clone the repo in your account, changes done here will be shown in the main repo.
Clone the repo to your local device:
git clone https://github.com/kubesimplify/website.git
cd website
Install dependencies:
$ npm install
To run the website on your computer:
$ npm start
# Production environment
docker build --target=prod -t kubesimplify:website . --no-cache
docker run --rm -d -p 3000:3000 kubesimplify:website
# Dev testing environment
docker build --target=dev -t kubesimplify:website . --no-cache
docker run --rm -it -v $(pwd):/app -p 3000:3000 kubesimplify:website sh
And then open up your web browser and go to localhost:3000.