Installation and building
Inventory
Install dependencies:
$ npm install gulp-cli -g
$ npm install
Now you can simply build the site by using the following command:
$ gulp
The build output reside inside the build/
folder.
For example you can view it with Firefox:
$ firefox build/index.html
Documentation
Go inside the documentation folder:
$ cd docusaurus
Install dependencies:
$ npm install
Build the documentation:
$ npm run build
You can manually browse it in the build/
(docusaurus/build/
) folder or run npm start
(or yarn start
if you have it installed).
For more information on how the documentation works, check Docusaurus website.