Skip to content

Development Setup

Follow this guide to setup your system for development with the 3MS.

Configuration Changes

  1. Fork the 3MS repository
  2. Create a new branch for your pull request (from the main branch)
  3. Develop changes in the new branch

Documentation Changes

  1. Fork the 3MS repository
  2. Create a new branch for your pull request (from the docs branch)
  3. Install Python.
  4. Install Pipenv.
  5. In your terminal, navigate to the 3MS folder, and run:
    pipenv install
    pipenv shell
    
  6. Develop changes in the new branch, using the following command to run the documentation locally:
    mkdocs serve
    

Comments