intial stuff

This commit is contained in:
2026-02-16 19:55:01 +01:00
parent f53bb84209
commit fed1844282
7 changed files with 703 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
{
"image": "ubuntu:24.04", // for cuda support: nvidia/cuda:13.1.0-devel-ubuntu24.04
"containerEnv": {
"CONAN_USR": "t", // need to be filled
"CONAN_PSW": "" // need to be filled,
},
"features": {
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/git-lfs:1": {}
},
"customizations": {
"vscode": {
"settings": {
"git.path": "/usr/bin/git"
},
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"GitHub.copilot-chat",
"njqdev.vscode-python-typehint",
"ms-python.debugpy",
"mhutchie.git-graph",
"ms-vscode.cpptools-themes",
"tamasfe.even-better-toml",
"moshfeu.compare-folders",
"njpwerner.autodocstring",
"ms-python.black-formatter",
"ms-python.isort",
"ms-vscode.live-server",
"yzhang.markdown-all-in-one",
"bierner.markdown-mermaid",
"charliermarsh.ruff",
"shardulm94.trailing-spaces",
"redhat.vscode-yaml",
"ninoseki.vscode-mogami",
"josetr.cmake-language-support-vscode",
"ms-vscode.cmake-tools",
"twxs.cmake",
"cheshirekow.cmake-format",
"ms-azuretools.vscode-docker",
"foxundermoon.shell-format",
"nvidia.nsight-vscode-edition"
]
}
},
"runArgs": [
"--network=host",
"-e HOST_UID=$(id -u)",
"-e HOST_GID=$(id -g)",
"--gpus=all"
],
"postStartCommand": ".devcontainer/postStartCommand.sh"
}