Files
the-littlest-jupyterhub/jupyterhub_config.py
2018-06-15 16:17:07 -07:00

9 lines
321 B
Python

import os
c.JupyterHub.spawner_class = 'systemdspawner.SystemdSpawner'
c.JupyterHub.authenticator_class = 'dummyauthenticator.DummyAuthenticator'
# FIXME: ensure user conda environment is installed & has necessary packages.
here = os.getcwd()
c.SystemdSpawner.extra_paths = [os.path.join(here, 'user-environment/bin')]