2 Commits
rust ... python

Author SHA1 Message Date
8a0c5d5349 fix: Packages now install correcly 2026-04-17 20:09:18 +01:00
51f1bef505 feat: Added python devcontainer 2026-04-14 18:17:15 +01:00

View File

@@ -1,18 +1,19 @@
{
"name": "Rust",
"name": "Python",
"runArgs": [
"--network=host"
],
"image": "git.luke-else.co.uk/luke-else/rust-dev:latest",
"image": "git.luke-else.co.uk/luke-else/python-dev:latest",
"remoteUser": "dev",
"customizations": {
"vscode": {
"settings": {
"editor.formatOnSave": true,
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"rust-analyzer.cargo.runBuildScripts": true,
"python.defaultInterpreterPath": "/usr/local/bin/python",
"python.analysis.typeCheckingMode": "basic",
"remote.autoForwardPorts": false,
"terminal.integrated.profiles.linux": {
"tmux-shell": {
@@ -29,14 +30,13 @@
},
"extensions": [
"ms-azuretools.vscode-docker",
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"vadimcn.vscode-lldb",
"dustypomerleau.rust-syntax",
"chrisbeard.rustdocstring",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"charliermarsh.ruff",
"mermaidchart.vscode-mermaid-chart"
]
}
},
"postCreateCommand": "cargo fetch"
"postCreateCommand": "uv sync"
}