6 Commits

View File

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