This repository contains the source files for the official NextNonce documentation, which is built using MkDocs with the Material for MkDocs theme.
The official, rendered documentation is available for everyone to view at:
This site includes:
- User Guide: Step-by-step instructions on how to install and use the NextNonce mobile app.
- Developer Docs: Information for developers who want to understand the project's architecture or contribute to the codebase.
If you wish to contribute to the documentation or simply want to run a local instance of the site, you can do so by following these steps.
- Python 3.x
pip(Python package installer)
If you haven't already, clone this repository to your local machine:
git clone https://github.com/NextNonce/Docs.git
cd DocsThe required Python packages are listed in the requirements.txt file. Install them using pip:
pip install -r requirements.txtThis will install MkDocs and all the necessary extensions and plugins.
Once the dependencies are installed, you can start the live-reloading local server provided by MkDocs:
mkdocs serveThis command will build the site and start a local web server. By default, you can view the documentation by opening your web browser and navigating to:
Any changes you make to the Markdown files in the docs/ directory will automatically trigger a rebuild, and the page in your browser will reload to show the updated content.