Newer
Older
EXT Soraya Arias
committed
# 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
EXT Soraya Arias
committed
c.Notebook.password = ''
c.Notebook.allow_password_change = False
EXT Soraya Arias
committed
## The directory to use for notebooks and kernels.
EXT Soraya Arias
committed
c.NotebookApp.notebook_dir = '/notebooks/fidle'
EXT Soraya Arias
committed
## 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.
EXT Soraya Arias
committed
c.NotebookApp.open_browser = True
EXT Soraya Arias
committed
## The port the notebook server will listen on.
EXT Soraya Arias
committed
c.Notebook.port = 8888
EXT Soraya Arias
committed
## Allow running as root
EXT Soraya Arias
committed
c.Notebook.allow_root = True
EXT Soraya Arias
committed
## Disable the "Quit" button on the Web UI (shuts down the server)
c.NotebookApp.quit_button = False