-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
48 lines (48 loc) · 1.77 KB
/
devcontainer.json
File metadata and controls
48 lines (48 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"image": "ghcr.io/calkit/devcontainer:latest",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/julialang/devcontainer-features/julia:1": {
"channel": "release"
}
},
"customizations": {
"vscode": {
"extensions": [
"james-yu.latex-workshop",
"lakefs.lakefs-dvc",
"esbenp.pretter-vscode",
"ms-python.vscode-pylance",
"streetsidesoftware.code-spell-checker",
"redhat.vscode-yaml",
"akamud.vscode-theme-onedark",
"mechatroner.rainbow-csv",
"julialang.language-julia",
"ms-toolsai.jupyter"
],
"settings": {
"latex-workshop.bibtex-format.tab": "4 spaces",
"latex-workshop.latex.autoBuild.run": "onSave",
"latex-workshop.docker.image.latex": "texlive/texlive:latest-full",
"latex-workshop.docker.enabled": true,
"dvc.doNotShowSetupAfterInstall": true,
"workbench.editorAssociations": {
"*.pdf": "latex-workshop-pdf-hook"
},
"git.autofetch": true,
"redhat.telemetry.enabled": true,
"window.menuBarVisibility": "classic",
"workbench.colorTheme": "Atom One Dark",
"editor.minimap.enabled": false,
"cSpell.userWords": [
"calkit",
"Calkit"
]
}
}
},
"initializeCommand": "mkdir -p .calkit/temp && echo '*' > .calkit/temp/.gitignore && bash -c 'echo \"CALKIT_TOKEN=$(calkit config get token)\" > .calkit/temp/.env' && bash -c 'echo \"CALKIT_DVC_TOKEN=$(calkit config get dvc_token)\" >> .calkit/temp/.env'",
"postCreateCommand": "bash $INIT_SCRIPTS_DIR/post-create.sh",
"updateContentCommand": "bash $INIT_SCRIPTS_DIR/update-content.sh",
"postStartCommand": "bash $INIT_SCRIPTS_DIR/post-start.sh"
}