Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add example entries for testing on binder #24

Merged
merged 1 commit into from
Jun 26, 2024
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
33 changes: 33 additions & 0 deletions binder/jupyter_gallery_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"GalleryManager": {
"title": "Tutorials",
"destination": "tutorials",
"exhibits": [
{
"git": "https://github.com/numba/nvidia-cuda-tutorial.git",
"homepage": "https://github.com/numba/nvidia-cuda-tutorial",
"title": "Numba for CUDA Programmers",
"description": "Nvidia contributed CUDA tutorial for Numba"
},
{
"git": "https://github.com/yunjey/pytorch-tutorial.git",
"homepage": "https://github.com/yunjey/pytorch-tutorial",
"title": "PyTorch Tutorial",
"description": "PyTorch Tutorial for Deep Learning Researchers",
"icon": "https://github.com/yunjey/pytorch-tutorial/raw/master/logo/pytorch_logo_2018.svg"
},
{
"git": "https://github.com/jupyter-widgets/tutorial.git",
"homepage": "https://github.com/jupyter-widgets/tutorial",
"title": "Jupyter Widgets Tutorial",
"description": "The Jupyter Widget Ecosystem"
},
{
"git": "https://github.com/amueller/scipy-2018-sklearn.git",
"homepage": "https://github.com/amueller/scipy-2018-sklearn",
"title": "Scikit-learn Tutorial 2018",
"description": "SciPy 2018 Scikit-learn Tutorial"
}
]
}
}
8 changes: 8 additions & 0 deletions binder/start
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

set -e

echo $@

exec jupyter-lab "${@:4}" --config jupyter_gallery_config.json

Loading