mirror of
https://github.com/gavvvr/obsidian-timecodes-plugin.git
synced 2026-07-22 05:38:08 +00:00
multiple devcontainers
This commit is contained in:
parent
fef4843ac2
commit
7f0a38a510
2 changed files with 38 additions and 0 deletions
14
.devcontainer/bare/devcontainer.json
Normal file
14
.devcontainer/bare/devcontainer.json
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"name": "Obsidian Timecodes Plugin - default container",
|
||||
"postCreateCommand": "pnpm install",
|
||||
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"dbaeumer.vscode-eslint",
|
||||
"EditorConfig.EditorConfig",
|
||||
"vitest.explorer"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
24
.devcontainer/restricted/devcontainer.json
Normal file
24
.devcontainer/restricted/devcontainer.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"image": "mcr.microsoft.com/devcontainers/javascript-node:24",
|
||||
"runArgs": [
|
||||
"--device=/dev/fuse",
|
||||
"--security-opt", "apparmor=unconfined",
|
||||
"--security-opt", "seccomp=unconfined"
|
||||
],
|
||||
|
||||
"capAdd": [
|
||||
"SYS_ADMIN"
|
||||
],
|
||||
"name": "Obsidian Timecodes Plugin - restricted container",
|
||||
"postCreateCommand": "pnpm install",
|
||||
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"dbaeumer.vscode-eslint",
|
||||
"EditorConfig.EditorConfig",
|
||||
"vitest.explorer"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue