-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
35 lines (35 loc) · 1.04 KB
/
devcontainer.json
File metadata and controls
35 lines (35 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "uv-python-dev",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"charliermarsh.ruff",
"atlassian.atlascode",
"njpwerner.autodocstring",
"ms-azuretools.vscode-docker",
"github.vscode-github-actions",
"eamodio.gitlens",
"ms-toolsai.jupyter",
"mechatroner.rainbow-csv",
],
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.autoSave": "afterDelay",
"terminal.integrated.env.linux": {
"UV_LINK_MODE": "copy"
}
}
}
},
"postCreateCommand": "uv venv --force && uv sync -v && if ! git remote | grep origin; then repo=$(basename $(pwd)); git remote add origin https://github.com/EED-Solutions/$repo.git; fi",
"features": {},
"remoteUser": "vscode"
}