MLDJANGO

Welcome to the Mono Lake Dashboard Repository. The Mono Lake Dashboard is a presentation of prehistoric, current, and model data, background information, and impacts presented on a website with dynamic and static products. In this documentation, we write up the development of the dashboard, including the description of all functions, code, and data.

If you’re here as a developer, you’re in the right place!

Installation

  1. Clone the Repository: Grab the clone link from the Github Clone Button & run the following command in your terminal

$ git clone REPOSITORY_CLONE_LINK
  1. Use pipenv: We’re using pipenv to package manage the project. After cloning the repo, run the following commands:

# If you don't already have pipenv, install with the following
$ pip install pipenv
# Run the following command (inside the repo folder!)
$ pipenv install

Documentation

All documentation is in the docs folder.

  1. To Read Documentation: Go to docs/_build/html/index.html. Open it in a browser of your chose

  2. To Update the Docs: Run the following code from inside the docs folder:

sphinx-apidoc -o autodocs/ ../mldjango/mld
make html