pollination-apps

A library to setup and deploy Apps to Pollination!


License
MIT
Install
pip install pollination-apps==0.11.1

Documentation

Pollination Apps

A python library to setup and deploy Apps to Pollination!

Installation

> pip install pollination-apps

Documentation

You can access the full docs for this package and its CLI here.

Local Development

  1. Clone this repo locally

    git clone git@github.com:ladybug-tools/pollination-apps

    or

    git clone https://github.com/ladybug-tools/pollination-apps
  2. Install dependencies:

    cd pollination-apps
    pip install -r dev-requirements.txt
    pip install -r requirements.txt
  3. Run Tests:

    python -m pytest tests/
  4. Generate Documentation:

    sphinx-apidoc -f -e -d 4 -o ./docs/modules ./pollination-apps
    sphinx-build -b html ./docs ./docs/_build
  5. Preview Documentation:

    python -m http.server --directory ./docs/_build/

    Now you can see the documentation preview at http://localhost:8000