Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

contributing-documentation.md

File metadata and controls

30 lines (21 loc) · 1.06 KB

Contributing Documentation

This documentation is a work in progress and we welcome all input: if something is missing or unclear, let us know by opening an issue on our helpdesk.

Serving the Docs Locally

This project uses the MkDocs tool with the Material theme and extra plugins to generate the website.

To test locally, you will need to install the Python dependencies. To do that, type the following commands:

git clone https://github.com/dandi/dandi-docs.git
cd dandi-docs
pip install -r requirements.txt

If you are working on your fork, simply replace https://github.com/dandi/dandi-docs.git with git clone git@github.com/<username>/dandi-docs.git , where <username> is your GitHub username.

Once done, you need to run MkDocs. Simply type:

mkdocs serve

Finally, open http://127.0.0.1:8000/ in your browser, and you should see the default home page of the documentation being displayed.