https://github.com/lizardbyte/dashboard
Developer dashboard for LizardByte repositories, built using Jupyter.
https://github.com/lizardbyte/dashboard
dashboard jupyter-notebook python website
Last synced: 6 months ago
JSON representation
Developer dashboard for LizardByte repositories, built using Jupyter.
- Host: GitHub
- URL: https://github.com/lizardbyte/dashboard
- Owner: LizardByte
- License: mit
- Created: 2024-08-18T00:14:55.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-07-20T06:46:59.000Z (6 months ago)
- Last Synced: 2025-07-20T08:31:16.128Z (6 months ago)
- Topics: dashboard, jupyter-notebook, python, website
- Language: Python
- Homepage: http://app.lizardbyte.dev/dashboard/
- Size: 299 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dashboard
A Jupyter notebook that creates a dashboard for viewing LizardByte repository data.
## Contributing
1. Notebooks should be committed with the output cleared.
```bash
find . -name '*.ipynb' -exec nb-clean clean {} \;
```
Or for a single notebook:
```bash
nb-clean clean ./notebook/dashboard.ipynb
```
2. You can create a preview of the notebook in html by running the following commands:
```bash
npm install
cp -f ./node_modules/ploty.js/dist/plotly.min.js ./gh-pages/plotly.js
jupyter nbconvert --debug --config=./jupyter_nbconvert_config.py --execute --no-input --to=html --output-dir=./gh-pages --output=index ./notebook/dashboard.ipynb
```
### Reviewing PRs
Notebook diffs are difficult to read. To make reviewing easier, you can enable the
[Rich Jupyter Notebook Diff](https://github.blog/changelog/2023-03-01-feature-preview-rich-jupyter-notebook-diffs/)
feature in your GitHub account settings.
Local options are also available. See [this](https://www.reviewnb.com/git-jupyter-notebook-ultimate-guide)
for more information.