You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
408 B

  1. # Contributing
  2. ## Dependencies
  3. On Debian:
  4. ```
  5. sudo apt install libpq-dev
  6. pip3 install -r requirements.txt
  7. pip3 install markdown django
  8. ```
  9. ## Adding Documentation
  10. 1. Create the appropriate markdown page under `templates/docs`
  11. 2. Add the page to `/templates/front/base_docs.html`
  12. 3. Generate the HTML assets with `python3 manage.py render_docs` - note that the `manage.py` is in the root of the project.