diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000000000000000000000000000000000..5426f91f8a0bacc92a20aa7e3ffec73f3a498433 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,23 @@ +{ + "name": "Python", + "workspaceFolder": "/workdir", + "workspaceMount": "source=${localWorkspaceFolder},target=/workdir,type=bind,consistency=delegated", + "remoteUser": "vscode", + "image": "andrijoos/devcontainer-python:3-bookworm", + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "tamasfe.even-better-toml" + ] + } + }, + "containerEnv": { + "SHELL": "/bin/bash", + "MPLBACKEND": "Agg" + }, + "remoteEnv": { + "PATH": "/home/vscode/.local/bin:${containerEnv:PATH}" + }, + "postStartCommand": "pip install -e ." +}