You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
309 B
13 lines
309 B
from tempfile import mkdtemp
|
|
|
|
c.ServerApp.port = 8888
|
|
c.ServerApp.port_retries = 0
|
|
c.ServerApp.open_browser = False
|
|
|
|
c.ServerApp.root_dir = mkdtemp(prefix="galata-test-")
|
|
c.ServerApp.token = ""
|
|
c.ServerApp.password = ""
|
|
c.ServerApp.disable_check_xsrf = True
|
|
|
|
c.JupyterNotebookApp.expose_app_in_browser = True
|