mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-08 18:44:10 +00:00

apologies to anyone finding this commit via git blame or log run the autoformatting by pre-commit run --all-files
18 lines
495 B
Python
18 lines
495 B
Python
# Configuration file for jupyterhub (postgres example).
|
|
|
|
c = get_config()
|
|
|
|
# Add some users.
|
|
c.JupyterHub.admin_users = {'rhea'}
|
|
c.Authenticator.whitelist = {'ganymede', 'io', 'rhea'}
|
|
|
|
# These environment variables are automatically supplied by the linked postgres
|
|
# container.
|
|
import os
|
|
|
|
pg_pass = os.getenv('POSTGRES_ENV_JPY_PSQL_PASSWORD')
|
|
pg_host = os.getenv('POSTGRES_PORT_5432_TCP_ADDR')
|
|
c.JupyterHub.db_url = 'postgresql://jupyterhub:{}@{}:5432/jupyterhub'.format(
|
|
pg_pass, pg_host
|
|
)
|