diff --git a/examples/service-whoami/jupyterhub_config.py b/examples/service-whoami/jupyterhub_config.py index 1140732c..8ca6c8fe 100644 --- a/examples/service-whoami/jupyterhub_config.py +++ b/examples/service-whoami/jupyterhub_config.py @@ -7,6 +7,7 @@ c.JupyterHub.services = [ 'name': 'whoami-api', 'url': 'http://127.0.0.1:10101', 'command': [sys.executable, './whoami.py'], + 'display': False, }, { 'name': 'whoami-oauth', @@ -36,3 +37,5 @@ c.JupyterHub.load_roles = [ c.JupyterHub.authenticator_class = 'dummy' c.JupyterHub.spawner_class = 'simple' c.JupyterHub.ip = '127.0.0.1' # let's just run on localhost while dummy auth is enabled +# default to home page, since we don't want to start servers for this demo +c.JupyterHub.default_url = "/hub/home"