Skip to content

2i2c-org/default-hub-homepage

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Custom JupyterHub template for 2i2c pilot hubs

This repo contains html jinja2 templates for customizing the appearance of JupyterHub. Each HTML file here will override the files in https://github.com/jupyterhub/jupyterhub/tree/master/share/jupyter/hub/templates.

Any changes made in this repository will be reflected in the JupyterHub within 5 minutes.

Local development

1. Test login template changes

You can run a local JupyterHub to test your login template changes.

  1. Setup a virtual python environment and ensure you have NPM installed.

  2. Set up configurable-http-proxy

  3. Install packages from requirements.txt

    python3 -m pip install -r requirements.txt
  4. Symlink extra assets we have, so templates can use it.

    ln -s $(pwd)/extra-assets $(dirname $(which python3))/../share/jupyterhub/static
  5. Add extra templates variables you might use in the templates, by editing jupyterhub_config.py file's c.JupyterHub.template_vars

  6. Start a JupyterHub!

    python3 -m jupyterhub
  7. Check out your work at http://localhost:8000.

  8. If you change templates, you need to restart JupyterHub to see changes. But for asset changes (JS, CSS, etc) you don't need a restart

2. Test other template changes

If you create a branch in this repository with a name that matches <cluster-name>-<hub-name>in the 2i2c hubs repository, then the changes in this branch will be reflected on that cluster and hub. This can be used either for testing (if this branch gets deleted once the changes have been merged into the main branch), or for having specific homepage customizations per hub.

Steps for testing changes on staging:

  1. From the local branch where you have your changes committed, create a new branch called 2i2c-staging:

    git checkout -b 2i2c-staging
  2. Push the local 2i2c-staging branch to the remote repository:

    git push <remote> 2i2c-staging
  3. Go to the infrastructure repository and update the 2i2c staging hub config to track this new branch (if not already).

    Follow the example at https://infrastructure.2i2c.org/en/latest/howto/features/login-page.html about how to set the jupyterhub.custom.homepage.gitRepoBranch config.

    Open a PR against that repo with the changes if any.

  4. It should take around 5min to see your changes on the staging hub at https://staging.pilot.2i2c.cloud after the PR against the infrastructure repository has been merged.

  5. After you've checked that everything works, merge the 2i2c-staging branch into the main branch of this repository if you want the changes to be deployed to the other hubs too after around 5min.

  6. Delete the remote staging branch, either from the GitHub GUI, or using:

    git branch git push -d <remote> 2i2c-staging

NOTE For per-hub specific templates, follow the steps above, but without deleting the remote branch.

About

Custom templates for JupyerHub

Resources

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 66.2%
  • Python 13.7%
  • JavaScript 10.9%
  • CSS 9.2%