Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 1.52 KB

File metadata and controls

41 lines (27 loc) · 1.52 KB

Subside

Repository for .md documentation files to create a documentation site for the Subside projects. The information can be found at the gh-pages website.

Updates to this website are pushed when the main branch gets updated.

Website Contents

  • About: Information about the SUBSIDE project
  • Products: Data and application products produced by the project
  • Training: documentation for using the services provide

Run the site locally

This website is built using the Material for Mkdocs package. Installation and getting started instructions are available in the documentation

Using Miniconda

To run locally using miniconda:

  1. Clone this repository onto your computer
  2. Start miniconda
  3. Create a 'mkdocs' environment conda create --name mkdocs
  4. Activate the mkdocs environment conda activate mkdocs
  5. Navigate into the github repository on your computer
  6. Run the command mkdocs serve
  7. Open the local browser address shown

To edit locally, use the IDE of your choice, VS Code is a good option.

Using python environment

To run locally using python:

  1. Clone this repository onto your computer
  2. Navigate into the github repository on your computer
  3. Run the command pip install -r requirements.txt
  4. Run the command mkdocs serve
  5. Open the local browser address shown

To edit locally, use the IDE of your choice, VS Code is a good option.