File size: 303 Bytes
c0616b4 96dcb2f 6992e29 c0616b4 6992e29 3b6b10b c0616b4 |
1 2 3 4 5 6 7 8 9 10 11 |
# Configuration file for jupyter-notebook.
import os
c.NotebookApp.ip = '0.0.0.0'
c.NotebookApp.port = 8888
c.NotebookApp.open_browser = False
c.NotebookApp.notebook_dir = '/data'
c.NotebookApp.allow_root = True
c.NotebookApp.token = os.environ.get('JUPYTER_TOKEN')
c.NotebookApp.base_url = '/jupyter' |