the-littlest-jupyterhub
the-littlest-jupyterhub copied to clipboard
Simple JupyterHub distribution for 1-100 users on a single server
There's logic in https://github.com/jupyterhub/the-littlest-jupyterhub/blob/main/tljh/installer.py#L162 for new and old versions of conda and mamba. Can these be replaced with latest conda and mamba? I understand this could break things with new...
I would like to pass a package to `tljh_custom_jupyterhub_config` however this command is called before the plugins are run. i.e. in the logs I see 2022-01-25 01:59:28,680 Setting up user...
There is various logging for other plugin e.g. `tljh_extra_hub_pip_packages` https://github.com/jupyterhub/the-littlest-jupyterhub/blob/main/tljh/installer.py#L361 would be good to add logging for other plugins such as `tljh_config_post_install` (https://github.com/jupyterhub/the-littlest-jupyterhub/blob/main/tljh/installer.py#L416)
### Proposed change Add config-entry for specifying the root dir for specific users other than their home directory. So if user A has a folder called my_dir in their home,...
### Proposed change Add support for jupyterlab simple as another possible default app. ### (Optional): Suggest a solution This would just be directing to the /doc endpoint instead of /lab.
We have a root environment where the bootstrap script installs some apt-get packages, like python3 and git. Then we have the hub environment setup by the bootstrap script, and then...
### Bug description After [Enabling the authenticator](https://tljh.jupyter.org/en/latest/howto/auth/nativeauth.html#enabling-the-authenticator) no users can log in anymore. My admins username and password results in "invalid username or password" and new users cannot login either...
From my limited testing experience I couldn't get the `tljh_extra_hub_pip_packages` plugin to work. This seems like a dup of `--user-requirements-txt-url` and could therefore be deprecated. FWIW the `tljh_extra_user_conda_packages` plugin works...
When looking at the logs i'm not sure when the setup has finished as the last line is `logger.info("Running TLJH installer...")`. This PR adds the line `logger.info("TLJH setup complete")` so...
I was looking how to create a user environment. I tried `mamba create -n test_env python=3.9 --y` but when I did `conda activate test_env` I got `CommandNotFoundError: Your shell has...