Skip to content

Commit

Permalink
rename content folder as notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
bitnik committed Sep 25, 2024
1 parent 70439fe commit 990ff39
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ jobs:
python -m pip install -r requirements.txt
- name: Build the JupyterLite site
run: |
cp README.md content
jupyter lite build --contents content --output-dir dist
jupyter lite build --contents notebooks --output-dir dist
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This is a static site powered by [JupyterLite](https://jupyterlite.readthedocs.i

## Run on Binder

[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/bitnik/analyse-caesar-cipher/HEAD?labpath=content%2Fanalyse_caesar_cipher.ipynb)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/bitnik/analyse-caesar-cipher/HEAD?labpath=notebooks%2Fanalyse_caesar_cipher.ipynb)

By clicking the badge above, you can run this project on [mybinder.org](https://mybinder.readthedocs.io/en/latest/).

Expand All @@ -31,9 +31,9 @@ Run jupyter lab server:

```sh
# jupyter lab
jupyter lab content/analyse_caesar_cipher.ipynb --port 8888
jupyter lab notebooks/analyse_caesar_cipher.ipynb --port 8888
# jupyter notebook
# jupyter notebook content/analyse_caesar_cipher.ipynb --port 8888
# jupyter notebook notebooks/analyse_caesar_cipher.ipynb --port 8888
# jupyter notebook --no-browser

# jupyter labextension list
Expand All @@ -43,6 +43,6 @@ Or run JupyterLite server:

```sh
# https://jupyterlite.readthedocs.io/en/stable/quickstart/standalone.html
jupyter lite build --contents content
jupyter lite build --contents notebooks
jupyter lite serve
```
File renamed without changes.

0 comments on commit 990ff39

Please sign in to comment.