1. About
2. Environment
3. Development
3.1. Install and Run
3.2. Style Guide
3.3. Security
4. Production
The BUILD.md is a file to check the environment and build specifications of horusec-docs project.
Set up your environment and then run the commands to run and check your project.
Run the command below to install the project's dependencies:
make install
And then to view the project on a web page, run:
make run
And then check if the web server is available at the address http://localhost:1313/docs
All project files must have the license header. You can check if all files are in agreement by running the following command in project root:
make license
If it is necessary to add the license in any file, run the command below to insert it in all files that do not have it:
make license-fix
To generate a production build, run the command below at the root of the project:
npm run build
A directory named dist/
will be generated, it contains the compiled project ready to be hosted on a web server.