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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# project/repo specific
conf.py
advanced/backends/*.bin
scipy-tutorial/dask-report-large-chunk.html
mydask.png
Expand Down
16 changes: 6 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,24 +45,20 @@ pixi run tutorial

### Building the Documentation Locally

To build and serve the tutorial website locally as a development server:

1. Build the Jupyter Book:
To build and serve the tutorial website locally with live reload:

```bash
pixi run build
pixi run watch
```

2. Serve the built site locally:
This watches for changes, rebuilds, and serves at http://localhost:8000.

To build without serving:

```bash
pixi run python -m http.server --directory _build/html
pixi run build
```

Then visit http://localhost:8000 in your browser.

Note: The `build` command does not have live rebuilding. You'll need to re-run `pixi run build` after making changes to see updates.

## Contributing

Contributions are welcome and greatly appreciated! See our [CONTRIBUTING.md](./CONTRIBUTING.md) document.
Expand Down
3 changes: 3 additions & 0 deletions _toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ parts:

- caption: Advanced
chapters:
- file: advanced/indexing/indexing.md
sections:
- file: advanced/indexing/why-trees.md
- file: advanced/parallel-intro.md
- file: advanced/apply_ufunc/apply_ufunc.md
sections:
Expand Down
5 changes: 5 additions & 0 deletions advanced/indexing/indexing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Indexing

```{tableofcontents}

```
Loading
Loading