Skip to content
Snippets Groups Projects
jupyter_notebook_config.py 278 B
Newer Older
# Configuration file for jupyter-notebook.
c.ServerProxy.servers = {
    'dash': {
        'command': [
            'python',
            'app/app.py',
            '--port',
            '{port}'
        ],
        'absolute_url': False,
        'new_browser_tab': False
    }
}