This website is built using Docusaurus 2, a modern static website generator.
Docusaurus web page advices to install and use yarn. There is a defect that on some installations yarn may hang during package resolve or fetch. Therefore it is recommended to not install yarn and use only npm. All commands below use npm instead of yarn. However, if you have succesfully installed yarn, you can use it instead of npm with the same command syntax.
Follow your operating system's method to install npm, for example for Ubuntu:
$ sudo apt install npm
Go to kraken.ci website repository and execute npm install command, for example:
$ cd website
$ npm install
It has been observed that npm may have problems with installing dependencies on Ubuntu 18.04 - upgrading to Ubuntu 20.04 resolves this issue.
$ npm start
This command starts a local development server and open up a browser window. Most changes to the website are reflected live without having to restart the server.
$ npm run build
This command generates static content into the build directory. This directory can be served using any static contents hosting service.