Skip to content

Latest commit

 

History

History
64 lines (41 loc) · 1.39 KB

README.md

File metadata and controls

64 lines (41 loc) · 1.39 KB

MinMod Dashboard

Python GitHub Issues Docker License Contributions welcome

Table of Contents

Introduction

To Do.

Installation

Install from pip: pip install -r requirements.txt

Usage

Install docker and run:

docker build -t dash-app .
docker run -v /var/local/mindmod/ssl/:/usr/src/app/ssl/ -d -p 8050:8050 dash-app

Otherwise, for the standalone web service:

pip install -r requirements.txt
python app.py

Visit http://localhost:8050

Development

Create a new branch off the develop branch for features or fixes.

After making changes rebuild images and run the app:

docker build -t dash-app .
docker run -p 8050:8050 dash-app

Tests

To Do.