From 4f0c20b23459d418fb31cce9d2e3a8a842de35cf Mon Sep 17 00:00:00 2001 From: Soraya Arias <soraya.arias@inria.fr> Date: Fri, 11 Mar 2022 17:55:03 +0100 Subject: [PATCH] Change jupyter notebook to jupyter lab config --- docker/jupyter_lab_config.py | 1 + docker/jupyter_notebook_config.py | 37 ------------------------------- 2 files changed, 1 insertion(+), 37 deletions(-) delete mode 100644 docker/jupyter_notebook_config.py diff --git a/docker/jupyter_lab_config.py b/docker/jupyter_lab_config.py index dcc8405..672a655 100644 --- a/docker/jupyter_lab_config.py +++ b/docker/jupyter_lab_config.py @@ -902,6 +902,7 @@ c.ServerApp.quit_button = True # Default: '' c.ServerApp.root_dir = '/notebooks/fidle-master' + ## The session manager class to use. # Default: 'jupyter_server.services.sessions.sessionmanager.SessionManager' # c.ServerApp.session_manager_class = 'jupyter_server.services.sessions.sessionmanager.SessionManager' diff --git a/docker/jupyter_notebook_config.py b/docker/jupyter_notebook_config.py deleted file mode 100644 index 9a0403c..0000000 --- a/docker/jupyter_notebook_config.py +++ /dev/null @@ -1,37 +0,0 @@ -# Configuration file for jupyter-notebook. - -#------------------------------------------------------------------------------ -# Application(SingletonConfigurable) configuration -#------------------------------------------------------------------------------ - -## Set the log level by value or name. -c.Application.log_level = 'INFO' - -#------------------------------------------------------------------------------ -# NotebookApp(JupyterApp) configuration -#------------------------------------------------------------------------------ - -## The IP address the notebook server will listen on. -c.NotebookApp.ip = '*' - -# Password to access the server -c.Notebook.password = '' -c.Notebook.allow_password_change = False - -## The directory to use for notebooks and kernels. -c.NotebookApp.notebook_dir = '/notebooks/fidle' - -## Whether to open in a browser after starting. The specific browser used is -# platform dependent and determined by the python standard library `webbrowser` -# module, unless it is overridden using the --browser (NotebookApp.browser) -# configuration option. -c.NotebookApp.open_browser = True - -## The port the notebook server will listen on. -c.Notebook.port = 8888 - -## Allow running as root -c.Notebook.allow_root = True - -## Disable the "Quit" button on the Web UI (shuts down the server) -c.NotebookApp.quit_button = False -- GitLab