Skip to content

Latest commit

 

History

History
72 lines (44 loc) · 1.26 KB

CONTRIBUTING.md

File metadata and controls

72 lines (44 loc) · 1.26 KB

Getting Started

To get your own local development copy of the documentation up and running follow these simple steps.

Dependencies

Python 3

Python 3.x comes preinstalled on every major Linux distributions.

python3-pip

Install python3-pip using your distribution package manager.

Development Context

All changes that you wish to bring to this documentation must be made through a pull request.

Thus, you will be using a feature branch to commit your changes.ch.

Contributing a New Feature

  1. Create your new feature branch
git branch feature/NewFeature
git checkout feature/NewFeature
  1. Commit your changes to your branch
git commit -S -a -m "Add my amazing new feature"
  1. Open a new pull request for approval and later merging

Development cycle

To modify the documentation pages and preview your changes, see the following:

  1. Create a new virtual environment
python -m venv venv
  1. Source the virtual environment
source venv/bin/activate
  1. Install dependencies
pip install mkdocs-material
  1. Start the live server
mkdocs serve
  1. Check if everything still runs in production mode
mkdocs build
  1. Commit your code