parent
f4efaf8a89
commit
32f3595526
@ -0,0 +1,17 @@
|
||||
import os
|
||||
c.NotebookApp.allow_remote_access = True
|
||||
#c.NotebookApp.default_url = '/jupyter/lab?reset'
|
||||
c.ServerApp.allow_origin = '*'
|
||||
c.NotebookApp.allow_origin = '*'
|
||||
c.NotebookApp.ip = '*'
|
||||
c.NotebookApp.notebook_dir = '/'
|
||||
c.NotebookApp.open_browser = False
|
||||
c.NotebookApp.password = ''
|
||||
c.NotebookApp.password_required = False
|
||||
c.NotebookApp.port = 80
|
||||
c.NotebookApp.base_url = "jupyter/" + os.getenv('JUPYTERSVC')
|
||||
#c.NotebookApp.base_url = "/"
|
||||
c.LabApp.disable_check_xsrf = True
|
||||
c.NotebookApp.disable_check_xsrf = True
|
||||
c.NotebookApp.tornado_settings = {'headers': { 'Content-Security-Policy': "frame-ancestors * 'self'" } }
|
||||
c.NotebookApp.default_show_linenumbers = True
|
@ -0,0 +1,10 @@
|
||||
{
|
||||
// 通知
|
||||
// @jupyterlab/apputils-extension:notification
|
||||
// 通知设置
|
||||
// *******************************************
|
||||
|
||||
// 获取Jupyter官方新闻
|
||||
// 是否从 Jupyter 新闻源获取新闻。如果设置为 `true`,它将向网站提出请求。
|
||||
"fetchNews": "false"
|
||||
}
|
Loading…
Reference in new issue