https://github.com/kiprotect/klaro-docs
https://github.com/kiprotect/klaro-docs
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kiprotect/klaro-docs
- Owner: kiprotect
- Created: 2021-03-29T09:25:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-29T09:25:39.000Z (about 5 years ago)
- Last Synced: 2025-06-26T06:38:00.163Z (12 months ago)
- Language: SCSS
- Size: 5.98 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# KIProtect Documentation
These files are used to build the documentation at https://kiprotect.com/docs.
## Setting up the environment
To build the docs, you will need a few tools installed on your machine:
- Node.js
- Python 3, pip3 and virtualenv.
- `inotify-tools` or `fswatch` if you're on Mac (only required for the watch command).
You can then install all website dependencies by running
make setup
This will set up a virtual Python environment, require the Python dependencies
into it and also install all required node modules.
## Building the docs
To build the docs simply run Make:
```bash
make
```
## Serving the docs
To serve the docs, simply run
```bash
make serve
```
This will start a HTTP server on port 8000 serving a hot-reloading version of
the docs.
## Watching out for changes
To continuously update the build when things change, simply run
```bash
make watch
```
The watch command will automatically serve the docs as well using a
hot-reloading capable server.