mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-16 14:27:01 +00:00
This patch adds a document with guidelines for contributing to chasquid. It includes suggestions for how to ask questions, how to send patches (and the expectations around them), and documents how the different branches are used. Thanks to raspbeguy (https://github.com/raspbeguy) for suggesting this improvement.
48 lines
794 B
YAML
48 lines
794 B
YAML
# mkdocs configuration
|
|
#
|
|
# To test changes locally, run:
|
|
# mkdocs serve -f .mkdocs.yml
|
|
|
|
site_name: chasquid documentation
|
|
|
|
# Point the repo to github to make it easier for users to do edits, even if
|
|
# it's not the canonical location.
|
|
repo_url: https://github.com/albertito/chasquid
|
|
|
|
markdown_extensions:
|
|
- codehilite:
|
|
guess_lang: false
|
|
- attr_list
|
|
|
|
theme: readthedocs
|
|
|
|
exclude_docs: |
|
|
man/*.1
|
|
man/*.5
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- How-to: howto.md
|
|
- Install: install.md
|
|
- Manpages: man/index.md
|
|
- All:
|
|
- aliases.md
|
|
- hooks.md
|
|
- clients.md
|
|
- dovecot.md
|
|
- dkim.md
|
|
- haproxy.md
|
|
- docker.md
|
|
- flow.md
|
|
- monitoring.md
|
|
- sec-levels.md
|
|
- tests.md
|
|
- relnotes.md
|
|
- knownissues.md
|
|
- contributing.md
|
|
|
|
not_in_nav: |
|
|
security.md
|
|
man/*
|
|
|