Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 507 Bytes

README.md

File metadata and controls

35 lines (22 loc) · 507 Bytes

Flux UI

Prerequisites

Required

  • Python 3.6.x or higher

Optional

  • Redis 4.0.x or higher (for rate limiting, otherwise in-memory storage is used)

Getting started

Create venv and install requirements

python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt ; pip3 install -r requirements_dev.txt

Run app

flask run

Testing

Run the test suite

python -m pytest --cov=app --cov-report=term-missing --cov-branch