https://github.com/matsoftware/mobile-metrics-dashboard
Interactive dashboard for representable mobile metrics data
https://github.com/matsoftware/mobile-metrics-dashboard
Last synced: 9 months ago
JSON representation
Interactive dashboard for representable mobile metrics data
- Host: GitHub
- URL: https://github.com/matsoftware/mobile-metrics-dashboard
- Owner: matsoftware
- License: mit
- Created: 2020-09-26T17:16:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-22T16:29:34.000Z (over 5 years ago)
- Last Synced: 2025-03-29T05:11:35.176Z (about 1 year ago)
- Language: Python
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# mobile-metrics-dashboard
Interactive dashboard for representable [mobile metrics](https://github.com/matsoftware/mobile-metrics) data, built with **Python 3.7.9** using **Dash** and **Plotly Express**.
## Pre-requisites
1. Install all the needed dependencies by running `./install.sh` from the `dashboard` folder.
2. Create a `.env` file in the `dashboard` of the repo with the local server settings, including the `API_SECRET` that you set in the backend before:
```bash
BACKEND_HOST=http://localhost
BACKEND_PORT=3000
API_SECRET=my-custom-token
DEBUG=true
```
3. Run the server with `./run.sh`
## Configuration
The dashboard can be configured by editing the `config.yml` file:
```yaml
title: 'Mobile Metrics Dashboard'
repo_name: 'Main repository'
footer_text: 'Ⓒ 2021 '
render_metrics:
app_size:
download_size_trend: true
install_size_trend: true
code_metrics:
total_loc: true
main_repo_loc: true
n_of_dependencies: true
```
The `render_metrics` section will let you configure which chart you want to display.