Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/update-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
python -m pip install -r requirements.txt

- name: Install npm dependencies
run: npm install
run: npm install --ignore scripts

- name: Get current date
id: date
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ A Jupyter notebook that creates a dashboard for viewing LizardByte repository da
```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
npm install --ignore-scripts
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
```
Expand Down