Content creation and sharing#
These sections describe ways that you can create content for your JupyterHub and share them with your users.
Distribute content with nbgitpuller#
You’ll often want to distribute content (such as notebooks, scripts, sample data, etc) to your users so they can do exercises, follow along with a lecture, or use as a starting point for their own work. This content is often constantly updated as time goes on, and needs to not overwrite your student’s work if you make an adjustment to content that has already been touched by the student.
nbgitpuller is the tool we recommend for this. The workflow goes something like this:
Ensure that nbgitpuller
is installed in your user environment#
The default environment for 2i2c JupyterHubs has nbgitpuller
pre-installed.
However, if you define a custom environment for your hub’s users, you’ll need to ensure that nbgitpuller
is installed in order for users to use it!
Put your content in a public GitHub repository#
Create a repository on GitHub and start putting your content there. This is the source of the content that will be distributed to your users. You can update it as often as you wish. While instructors will need to know how github works, your users will never have to interact with git directly.
Generate an nbgitpuller link#
Generate an nbgitpuller link. This generates a clickable link that contains within it the following pieces of information:
The URL to your hub. Upon clicking the link, users will be redirected to this hub, and content will be pulled into their home directory there.
The URL of the git repository where the content lives.
The branch in the git repository where the content lives. The default specified there is
master
, although newer GitHub repositories usemain
as the default. You can find yours on the Github page of your content repositoryThe default interface to open when users click this link. The default is the classic notebook, but many other apps are available.
A file to open when the link is clicked. When left empty, a directory listing with the content of the repository will be shown.
Tip
Unfortunately, RStudio does not support opening a specific file, and will always show the home directory. Users will have to manually navigate to the appropriate file.
Once you’ve filled these out, you can copy the link from the textbox above the form.
Distribute your nbgitpuller link#
Distribute the link you have generated to your users. Upon clicking the link, they will be:
Redirected to your hub, and asked to log in if they have not already
The first time the link is clicked, your content repository will be pulled into their home directory!
If they had already clicked the link before, any new changes in your content repository will be pulled in. Any changes the user has made will be automatically merged with changes in the content repository, in such a way that the user’s changes are never overwritten. All merge conflicts will also be automatically resolved, so users don’t have to interact with git.
If you have picked a specific file to be displayed, the user will be redirected to that file, open in the application you picked. If not, the directory listing of local copy of the content repository will be shown in the application you selected.
Important
You do not have to create a new link each time you update your content repository! The same link will continue to work, so you can simply ask your users to click the link again to fetch the latest changes.
However, if you want to create links to individual files that should be opened at specific points - like one link per class or assignment - you can regenerate the links with different values for the file to open or interface. As long as the hub url, content repository url and the branch name are the same, users will be not be duplicating content.
Serve static web content with your hub#
2i2c hubs can serve static web content as a JupyterHub service. This is useful for hosting documentation for your hub’s community.
The content of your static site should live in a .git
repository as a collection of static HTML files, and the website for these files will be available at a URL like:
https://<hub-address>/services/docs
Follow these steps to set up documentation for your hub.
Create your static HTML files#
There are many ways to create your own static HTML files, and this guide doesn’t cover a specific method. Here are a few services you should try out:
Jupyter Book is a tool for building rich computational narrative sites from the Jupyter community.
Sphinx is a popular documentation engine in Python
Hugo is a popular static website generator that is flexible and fast.
Put the generated HTML into a github
repository in a dedicated branch (so the branch should only contain the HTML files).
Ensure that the HTML files contain relative links, not absolute links.
Tip
We highly recommend storing your source files in one branch, and automatically generating the HTML for your site via GitHub Actions. This way, your HTML files will automatically be updated when you update your site content.
Ask a 2i2c engineer to enable the documentation service for your hub#
Your hub will need to be configured by a 2i2c engineer to enable the docs service (following these instructions).
Find the GitHub repository and the branch where your HTML files are stored.
Send a support request asking them to enable this, and provide the repository/branch you found above.
Once this is deployed, your hub’s documentation should be accessible at
https://<hub-address>/services/docs
Write public books that connect to a 2i2c JupyterHub#
You can create public content that is designed to connect with your 2i2c JupyterHub. For example, you can create lectures from Jupyter Notebooks, and allow students to grab their own copy of the notebook to interact with on the 2i2c Hub.
To connect your public content with a 2i2c JupyterHub, we recommend using Jupyter Book. This is an open-source project that allows you to share collections of notebooks and markdown files as an online website and book. Check out the Jupyter Book getting started guide for more information about Jupyter Book.
You can tell Jupyter Book to place links directly to your 2i2c JupyterHub on each
page that is served from a notebook. To do so, follow the launch buttons for
JupyterHubs
instructions.
Make sure that you configure your jupyterhub_url
to point to the URL of your
2i2c JupyterHub (e.g., https://<your-hub>.pilot.2i2c.cloud
).
This will use automatically create nbgitpuller links
for you.