1 Commits

Author SHA1 Message Date
9ac55120cb feat: Created svelte devcontainer branch 2026-03-30 16:03:56 +01:00

View File

@@ -1,42 +1,18 @@
{ {
"name": "Python", "name": "Svelte",
"runArgs": [ "image": "git.luke-else.co.uk/luke-else/nodejs-dev:latest",
"--network=host" "remoteUser": "dev",
], "customizations": {
"image": "git.luke-else.co.uk/luke-else/python-dev:latest", "vscode": {
"remoteUser": "dev", "settings": {
"customizations": { "editor.formatOnSave": true
"vscode": { },
"settings": { "extensions": [
"editor.formatOnSave": true, "ms-azuretools.vscode-docker",
"[python]": { "ms-vscode-remote.remote-containers",
"editor.defaultFormatter": "ms-python.black-formatter" "svelte.svelte-vscode"
}, ]
"python.defaultInterpreterPath": "/usr/local/bin/python", }
"python.analysis.typeCheckingMode": "basic", },
"remote.autoForwardPorts": false, "postCreateCommand": "pnpm install"
"terminal.integrated.profiles.linux": {
"tmux-shell": {
"path": "tmux",
"args": [
"new-session",
"-A",
"-s",
"dev"
]
}
},
"terminal.integrated.defaultProfile.linux": "tmux-shell"
},
"extensions": [
"ms-azuretools.vscode-docker",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"charliermarsh.ruff",
"mermaidchart.vscode-mermaid-chart"
]
}
},
"postCreateCommand": "uv sync"
} }