File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 4
4
"context" : " ../../conda"
5
5
},
6
6
"postCreateCommand" : {
7
- "jupyterlab" : " mkdir /home/jovyan/.jupyter && cp .devcontainer/scipy2023/jupyter_lab_config.py /home/jovyan/.jupyter/jupyter_lab_config.py"
7
+ "jupyterlab" : " mkdir /home/jovyan/.jupyter && cp ${localWorkspaceFolder}/jupyter_lab_config.py /home/jovyan/.jupyter/jupyter_lab_config.py" ,
8
+ "vscode" : " mkdir ${containerWorkspaceFolder}/.vscode && cp ${localWorkspaceFolder}/tasks.json ${containerWorkspaceFolder}/.vscode/tasks.json"
8
9
},
9
10
"hostRequirements" : {
10
11
"cpus" : 2
Original file line number Diff line number Diff line change
1
+ {
2
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3
+ // for the documentation about the tasks.json format
4
+ "version" : " 2.0.0" ,
5
+ "tasks" : [
6
+ {
7
+ "label" : " jupyterlab" ,
8
+ "type" : " shell" ,
9
+ "command" : " jupyter lab" ,
10
+ "presentation" : {
11
+ "reveal" : " always"
12
+ },
13
+ "runOptions" : {
14
+ "runOn" : " folderOpen"
15
+ }
16
+ }
17
+ ]
18
+ }
You can’t perform that action at this time.
0 commit comments