To Do.
Install from pip: pip install -r requirements.txt
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
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
To Do.