This repository contains the source files for the docs.nmaas.eu website. It provides information on both the self-hosted NMaaS version, as well as the hosted one.
The documentation is built using MkDocs. GitHub workflows have been configured that publish the latest changes from the master
branch to GitHub pages.
The following steps can be followed to set up a local environment:
-
Fork/Clone the Git repository
-
Create a new Python virtual environment
git clone https://github.com/nmaas-platform/nmaas-docs cd nmaas-docs virtualenv -p python3 venv
-
Activate the newly created Python virtual environment
source venv/bin/activate
-
Install the dependencies specified in the
requirements.txt
filepip install -r requirements.txt
-
Start the MkDocs development server
mkdocs serve
-
Make changes to any of the source Markdown files, save them, and preview them using the development server.
-
Push the changes and create a corresponding pull request.