Files
vikunja/.devcontainer/devcontainer.json
kolaente 4b18d08993 chore(dev): move devcontainer config to .devcontainer/ directory
Newer devenv generates the devcontainer config at .devcontainer/devcontainer.json
instead of the legacy root-level .devcontainer.json, which left an untracked
duplicate. Track the new path so regeneration is a no-op.
2026-06-27 14:25:45 +02:00

34 lines
679 B
JSON

{
"customizations": {
"vscode": {
"extensions": [
"Syler.sass-indented",
"codezombiech.gitignore",
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"golang.Go",
"lokalise.i18n-ally",
"mikestead.dotenv",
"mkhl.direnv",
"vitest.explorer",
"vue.volar"
]
}
},
"forwardPorts": [
4173,
3456
],
"image": "ghcr.io/cachix/devenv/devcontainer:latest",
"overrideCommand": false,
"portsAttributes": {
"3456": {
"label": "Vikunja API"
},
"4173": {
"label": "Vikunja Frontend dev server"
}
},
"updateContentCommand": "devenv test"
}