Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 948 Bytes

developer-notes.md

File metadata and controls

34 lines (23 loc) · 948 Bytes

Developer Notes

This documents contains notes for developers working on the project.

Compiling and Testing

In order to compile the project, simply cd into the docs directory and run the build script:

cd docs
./build.bat html

Note

The required dependencies for building the documentation are listed in the docs/requirements.txt file. You can install them using pip:

pip install -r requirements.txt

This will generate the HTML files in the docs/_build/html directory.

To test the compiled HTML files, you can run a local web server using Python:

cd docs
python -m http.server --bind localhost -d .\_build\html\

This will start a web server on http://localhost:8000 where you can view the compiled documentation.

Publishing

The documentation gets automatically published on Read the Docs when a new tag is pushed to the repository.

TODO - add link to Read the Docs once it's set up.