Skip to content
This repository has been archived by the owner on Feb 12, 2021. It is now read-only.

Latest commit

 

History

History
40 lines (27 loc) · 1.22 KB

README.md

File metadata and controls

40 lines (27 loc) · 1.22 KB

DEPRECATED

DummyAuthenticator is now a part of JupyterHub core. You can migrate to it by setting:

c.JupyterHub.authenticator_class = "dummy"

The JupyterHub documentation has more information on how to setup a development environment

Dummy JupyterHub Authenticator

Simple authenticator for JupyterHub that allows all user logins regardless of password. Useful only for testing, do not use for anything actually serious!

Installation

pip install jupyterhub-dummyauthenticator

Should install it. It has no additional dependencies beyond JupyterHub.

You can then use this as your authenticator by adding the following line to your jupyterhub_config.py:

c.JupyterHub.authenticator_class = 'dummyauthenticator.DummyAuthenticator'

Configuration

If you want, you can set a static global password for all users. This provides slightly more security, but not that much more than having no password set :)

c.DummyAuthenticator.password = "your strong password"