(customize:launch)=
You can automatically add buttons that allow users to interact with your book's content. This is can be by directing them to a JupyterLite installation (that runs in the user's browser) or one of BinderHub or JupyterHub (that runs in the cloud), or by making your page interactive using Thebe.
To use any of JupyterLite or Binder or JupyterHub links, you'll first need to configure your documentation's repository url:
html_theme_options = {
...
"repository_url": "https://github.com/{your-docs-url}",
"repository_branch": "{your-branch}",
"path_to_docs": "{path-relative-to-site-root}",
...
}
If you're using [Jupytext](https://jupytext.readthedocs.io/en/latest/) to
pair an ipynb file with your text files, and that ipynb file is in the same
folder as your content, then Binder/JupyterHub links will point to the ipynb
file instead of the text file.
If you are adding JupyterLite links to your page, first work out where your
JupyterLite instance will be serving from, then add the URL to your
configuration. In the example below, we've set up JupyterLite pages at the
base URL of the main pages site, and at subdirectory interact/lab:
html_theme_options = {
...
"launch_buttons": {
"jupyterlite_url": "interact/lab/index.html"
},
...
}See https://odsti.github.io/cfd-textbook for an example JupyterBook project serving JupyterLite using this configuration, and https://github.com/odsti/cfd-textbook for the driving repository.
To add Binder links to your page, add the following configuration:
html_theme_options = {
...
"launch_buttons": {
"binderhub_url": "https://{your-binderhub-url}"
},
...
}To add JupyterHub links to your page, add the following configuration:
html_theme_options = {
...
"launch_buttons": {
"jupyterhub_url": "https://{your-binderhub-url}"
},
...
}To add Google Colab links to your page, add the following configuration:
html_theme_options = {
...
"launch_buttons": {
"colab_url": "https://colab.research.google.com"
},
...
}To add Deepnote links to your page, add the following configuration:
html_theme_options = {
...
"launch_buttons": {
"deepnote_url": "https://deepnote.com"
},
...
}This will create a new Deepnote project every time you click the launch button.
Thebe converts your static code blocks into interactive code blocks powered by a Jupyter kernel. It does this by asking for a BinderHub kernel under the hood and converts all of your code cells into interactive code cells. This allows users to run the code on your page without leaving the page.
You can use the Sphinx extension
sphinx-thebe to add
live code functionality to your documentation. You can install sphinx-thebe from pip,
then activate it by putting it in your conf.py extensions list:
extensions = [
...
"sphinx_thebe"
...
]If you'd like to activate UI elements for sphinx-thebe in the sphinx-book-theme,
add the following theme configuration:
html_theme_options = {
...
"launch_buttons": {
"thebe": True,
},
...
}This will add a custom launch button and some UI elements will be added for Thebe.
If you also specify a repository_url with your theme configuration, sphinx-thebe
will use this repository for its environment:
html_theme_options = {
...
"repository_url": "https://github.com/{your-docs-url}",
...
}You can also manually customize Thebe with the `thebe_config` dictionary.
This will over-ride any configuration that is pulled from your `html_theme_options`
configuration. See the [`sphinx-thebe`](https://sphinx-thebe.readthedocs.io/en/latest/)
documentation for what you can configure.
To configure a relative path to your documentation, add the following configuration:
html_theme_options = {
...
"path_to_docs" = "{path-relative-to-repo-root}"
...
}You can control the interface that is opened when somebody clicks on a launch button. To do so, add the following configuration:
html_theme_options = {
...
"launch_buttons": {
"notebook_interface": "jupyterlab",
},
...
}