mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-08 02:24:08 +00:00
16 lines
326 B
Python
16 lines
326 B
Python
import os
|
|
import sys
|
|
|
|
c.JupyterHub.services = [
|
|
{
|
|
'name': 'whoami',
|
|
'url': 'http://127.0.0.1:10101',
|
|
'command': [sys.executable, './whoami.py'],
|
|
},
|
|
{
|
|
'name': 'whoami-oauth',
|
|
'url': 'http://127.0.0.1:10102',
|
|
'command': [sys.executable, './whoami-oauth.py'],
|
|
},
|
|
]
|