3 Commits
Author SHA1 Message Date
luke-else 15dbbf5064 feat: reverted back to zsh 2026-07-21 15:27:36 +01:00
luke-else 8a0c5d5349 fix: Packages now install correcly 2026-04-17 20:09:18 +01:00
luke-else 51f1bef505 feat: Added python devcontainer 2026-04-14 18:17:15 +01:00
+15 -20
View File
@@ -1,36 +1,31 @@
{ {
"name": "TF", "name": "Python",
"runArgs": [ "runArgs": [
"--network=host" "--network=host"
], ],
"image": "git.luke-else.co.uk/luke-else/tf-dev:latest", "image": "git.luke-else.co.uk/luke-else/python-dev:latest",
"remoteUser": "dev", "remoteUser": "dev",
"mounts": [
"source=${localEnv:HOME}${localEnv:USERPROFILE}/.ssh,target=/home/dev/.ssh,type=bind,consistency=cached"
],
"customizations": { "customizations": {
"vscode": { "vscode": {
"settings": { "settings": {
"editor.formatOnSave": true, "editor.formatOnSave": true,
"remote.autoForwardPorts": false, "[python]": {
"terminal.integrated.profiles.linux": { "editor.defaultFormatter": "ms-python.black-formatter"
"tmux-shell": {
"path": "tmux",
"args": [
"new-session",
"-A",
"-s",
"dev"
]
}
}, },
"terminal.integrated.defaultProfile.linux": "tmux-shell" "python.defaultInterpreterPath": "/usr/local/bin/python",
"python.analysis.typeCheckingMode": "basic",
"remote.autoForwardPorts": false,
"terminal.integrated.defaultProfile.linux": "zsh"
}, },
"extensions": [ "extensions": [
"ms-azuretools.vscode-docker", "ms-azuretools.vscode-docker",
"mermaidchart.vscode-mermaid-chart", "ms-python.python",
"opentofu.vscode-opentofu" "ms-python.vscode-pylance",
"ms-python.black-formatter",
"charliermarsh.ruff",
"mermaidchart.vscode-mermaid-chart"
] ]
} }
} },
"postCreateCommand": "uv sync"
} }