TheHive-Project / docs

Official documentation for TheHive Project applications
https://docs.thehive-project.org
20 stars 31 forks source link

docs

The documentation uses mkdocs to render the content.

Test changes

# Install the requirements first
pip install -r requirements.txt

# Start the mkdocs server in development mode
mkdocs serve

Alternatively you can use a docker container:

docker build . -t thehive-docs
docker run -it --rm -p 8000:8000 -v $PWD:/docs thehive-docs

Deploy

After commiting changes in mainbranch, deploy the documentation by running this command:

mkdocs gh-deploy --remote-branch gh-pages