mirror of
https://github.com/jupyterhub/the-littlest-jupyterhub.git
synced 2025-12-18 21:54:05 +08:00
9 lines
321 B
Python
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')] |