-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
32 lines (32 loc) · 903 Bytes
/
devcontainer.json
File metadata and controls
32 lines (32 loc) · 903 Bytes
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
{
"image": "ghcr.io/rocker-org/devcontainer/r-ver:4",
"features": {
"ghcr.io/rocker-org/devcontainer-features/quarto-cli": {
"version": "1.5.57"
},
"ghcr.io/eitsupi/devcontainer-features/go-task": {},
"ghcr.io/devcontainers/features/node": {},
"ghcr.io/devcontainers/features/python": {},
"ghcr.io/eitsupi/devcontainer-features/duckdb-cli": {},
"ghcr.io/rocker-org/devcontainer-features/renv-cache": {}
},
"customizations": {
"vscode": {
"extensions": [
"editorconfig.editorconfig",
"ms-toolsai.jupyter",
"prql-lang.prql-vscode"
]
}
},
"updateContentCommand": {
"r-packages": "R -q -e 'renv::restore()'",
"python-packages": "python3 -m pip install jupyter jupyter-cache -r requirements.txt",
"npm-packages": "npm install"
},
"containerEnv": {
"NOT_CRAN": "true",
// "RENV_CONFIG_PAK_ENABLED": "TRUE"
"RENV_CONFIG_SANDBOX_ENABLED": "FALSE"
}
}