File tree Expand file tree Collapse file tree 7 files changed +199
-12
lines changed Expand file tree Collapse file tree 7 files changed +199
-12
lines changed Original file line number Diff line number Diff line change @@ -172,5 +172,6 @@ packages/react/.vscode/launch.json
172
172
! .storybook
173
173
! .vscode
174
174
! .licenserc.yaml
175
- ! packages / react / jupyter_react / static / README.md
175
+ ! dev / notebooks / .datalayer
176
176
! docs /static /img
177
+ ! packages /react /jupyter_react /static /README.md
Original file line number Diff line number Diff line change 76
76
}
77
77
78
78
#################
79
- # Content
79
+ # Contents
80
80
#################
81
81
82
- # c.FileContentsManager.delete_to_trash = False
83
82
content_dir = os .path .dirname (os .path .realpath (__file__ )) + '/../notebooks'
84
83
c .ServerApp .root_dir = content_dir
85
84
c .ServerApp .preferred_dir = content_dir
86
85
86
+ # c.FileContentsManager.delete_to_trash = False
87
+ c .ContentsManager .allow_hidden = True
88
+
87
89
#################
88
90
# URLs
89
91
#################
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 15
15
"jupyterServerToken" : "60c1661cc408f978c309d04157af55c9588ff9557c9380e4fb50785750703da6" ,
16
16
"runUrl" : "https://oss.datalayer.run" ,
17
17
"token" : "" ,
18
- "cpuEnvironment" : "python-simple -env" ,
18
+ "cpuEnvironment" : "python-cpu -env" ,
19
19
"gpuEnvironment" : "pytorch-cuda-env" ,
20
20
"credits" : 1
21
21
}
Original file line number Diff line number Diff line change 15
15
"jupyterServerToken" : "60c1661cc408f978c309d04157af55c9588ff9557c9380e4fb50785750703da6" ,
16
16
"runUrl" : "https://prod1.datalayer.run" ,
17
17
"token" : "" ,
18
- "cpuEnvironment" : "python-simple -env" ,
18
+ "cpuEnvironment" : "python-cpu -env" ,
19
19
"gpuEnvironment" : "pytorch-cuda-env" ,
20
20
"credits" : 1
21
21
}
Original file line number Diff line number Diff line change @@ -135,9 +135,9 @@ export class Kernel {
135
135
} ) ;
136
136
this . _kernelConnection . info . then ( info => {
137
137
this . _info = info ;
138
- console . log ( 'Kernel information .' , info ) ;
139
- console . log ( 'Kernel session .' , this . _session ) ;
140
- console . log ( 'Kernel details .' , this . toJSON ( ) ) ;
138
+ console . log ( 'Kernel Information .' , info ) ;
139
+ console . log ( 'Kernel Session .' , this . _session ) ;
140
+ console . log ( 'Kernel Details .' , this . toJSON ( ) ) ;
141
141
} ) ;
142
142
}
143
143
}
Original file line number Diff line number Diff line change @@ -419,10 +419,9 @@ export class ServiceManagerLess implements ServiceManager.IManager {
419
419
nbconvert : NbConvert . IManager ;
420
420
constructor ( serverSettings ?: ServerConnection . ISettings ) {
421
421
this . serverSettings = serverSettings ?? ServerConnection . makeSettings ( {
422
- baseUrl : 'https://oss.datalayer.run/api/jupyter-server' ,
423
- wsUrl : 'wss://oss.datalayer.run/api/jupyter-server' ,
424
- token : '60c1661cc408f978c309d04157af55c9588ff9557c9380e4fb50785750703da6' ,
425
- } ) ;
422
+ baseUrl : 'http://' ,
423
+ wsUrl : 'ws://' ,
424
+ token : '' , } ) ;
426
425
this . contents = new ContentsManagerLess ( this . serverSettings ) ;
427
426
this . kernels = new KernelsManagerLess ( this . serverSettings ) ;
428
427
this . kernelspecs = new KernelspecManagerLess ( this . serverSettings ) ;
You can’t perform that action at this time.
0 commit comments