jpmorganchase / jupyter-fs

A filesystem-like contents manager for multiple backends in Jupyter
Apache License 2.0
200 stars 36 forks source link

Fix doc: Jupyterfs has to be JupyterFs in config files #180

Closed jeflem closed 11 months ago

jeflem commented 11 months ago

Somewhere between 0.3.1 and 0.4.0 the former class Jupyterfs in config.py became JupyterFs. This change is not reflected in the docs (README.md). For instance, server-side resources config now has to be

c.JupyterFs.resources = [
    {
        "name": "local_test",
        "url": "osfs:///Users/foo/test"
    },
]

Note the capital F in c.JupyterFs.resources.