pipech / frappe-plotly-dash

:runner: Plotly Dash integration for Frappe web framework
MIT License
24 stars 24 forks source link

Plotly Dash integration for Frappe web framework.

Plotly Dash is great dashboard tools which allow programmer to easily create interactive dashboard with endless possibilities but it lack of general functionality such as web-authentication and user permission.

Frappe web framework is also a great web framework with come with alot of functionality.

Integrate Plotly Dash with Frappe web framework will result in great dashboard tools with web-authentication, user permission, ability to easily performs CRUD operation and also the most important thing ERPNext.

Feature

Description

How it works

It works by passing request from Frappe application to Dash application only if request url path start with /dash.

Then we embedded Dash page with CoreUI template into Frappe page using iFrame.

How to use

Dash Integration app is design to use along with Dash Dashboard app.

Installation

bench get-app dash_integration https://github.com/pipech/frappe-plotly-dash.git
bench get-app dash_dashboard https://github.com/pipech/frappe-plotly-dash-dashboard.git

Adding dashboard

  1. Adding dashboard layout to dash_dashboard/dash_dashboard folder
  2. Set route in dash_dashboard/router.py file by adding route into dashboard_route.route_wrapper function
  3. Set callback in dash_dashboard/router.py file by adding callback into dashboard_callback.callback_wrapper function
  4. In Frappe web ui search for Dash Dashboard DocType, then add a new doc with matching name to dashboard_route

Setup

For production setup

Change supervisor config

From

command=/home/frappe/bench/env/bin/gunicorn -b 0.0.0.0:8000 -w 4 -t 120 frappe.app:application --preload

To

command=/home/frappe/bench/env/bin/gunicorn -b 0.0.0.0:8000 -w 4 -t 120 dash_integration.app:application --preload

For development setup

bench execute dash_integration.app.serve

Limitation

Attribution

License

This repository has been released under the MIT License.