Welcome to the Wye Make documentation repository. This repository hosts the source files for our comprehensive documentation, powered by MkDocs. The published site is available at https://docs.wyemake.co.uk/.
docs/– Markdown source files for each section of the documentationmkdocs.yml– Configuration for MkDocs, defining navigation, theme and pluginsrequirements.txt– Python dependencies
- Python 3.7 or later
- pip
- MkDocs (
pip install mkdocs)
- Clone the repository (using the tools branch):
git clone --branch tools https://github.com/wyemake/docs.git
- Change into the repository directory:
cd docs - (Optional) Create and activate a virtual environment:
python -m venv .venv source .venv/bin/activate # Linux/macOS .venv\Scripts\activate # Windows
- Install the required packages:
pip install -r requirements.txt
To preview the documentation locally, run:
mkdocs serveThen open http://127.0.0.1:8000/ in your browser.
To build the static site files into the site/ directory, run:
mkdocs buildWe welcome contributions to improve and expand our documentation:
- Fork this repository.
- Create a new branch for your changes:
git checkout -b feature/your-feature-name
- Make your edits within the
docs/directory. - Commit your changes and push to your fork.
- Open a Pull Request against the tools branch of this repository.
For substantial enhancements or structural changes, please open an issue first to discuss your proposal.
Changes merged into the tools branch are automatically deployed via GitHub Actions to https://docs.wyemake.co.uk/.
This documentation is licensed under the MIT Licence. See LICENSE for details.
For queries or further assistance, please get in touch with the Wye Make team at docs@wyemake.co.uk.