Skip to main content

Kitiplex Native Wesite

tip

This website is built using Docusaurus. Learn more.

Creating new site

Generate a new Docusaurus site using the classic template.

The classic template will automatically be added to your project after you run the command:

npm init docusaurus@latest my-website classic
cd my-website
npm run start

Prerequisites

  1. Git.
  2. Node (version 12 or greater).
  3. Yarn (version 1.5 or greater).
  4. A fork of the repo (for any contributions).
  5. A clone of the kitiplex-dev repo.

Run locally

  1. Change directory to website from root:
cd website
  1. Install dependencies:
npm install
  1. Start locally:
npm run build
npm run serve
  1. (Optional) Should you need to clear build cache:
npm run clear

Extended commands

You can run the dev server on 0.0.0.0 to make it listen on the local IP / local router.

npm run start --host 0.0.0.0

Build and serve command to test your build locally.

npm run build && npm run serve --host 0.0.0.0

Know more about Docusaurus CLI.