Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Build and fund commands #236

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Fork the repo by clicking the fork button. This will clone the repo in your acco

Clone the repo to your local device:
```bash
# Clone the repository
git clone https://github.com/kubesimplify/website.git
cd website
```
Expand All @@ -44,6 +45,16 @@ Install dependencies:
```bash
$ npm install
```
If you having fund issue:
```bash
# Use flag --no-fund
$ npm install --no-fund
```
You can also build the app in production mode:
```bash
$ npm build
```

To run the website on your computer:
```bash
$ npm start
Expand Down