-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
65 lines (61 loc) · 1.83 KB
/
Copy pathdevcontainer.json
File metadata and controls
65 lines (61 loc) · 1.83 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "devpod-ansible",
"build": {
"dockerfile": "Dockerfile",
"args": {
"UV_VER": "0.9.17",
"PYTHON_VER": "3.14"
}
},
"workspaceFolder": "/workspace",
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached",
"mounts": [
"source=${env:HOME}/.ssh,target=/home/coder/.ssh,type=bind,consistency=cached"
],
"containerUser": "coder",
"remoteUser": "coder",
"features": {},
"postStartCommand": "uv sync --dev --all-extras",
"customizations": {
"vscode": {
"extensions": [
"rogalmic.bash-debug",
"mads-hartmann.bash-ide-vscode",
"jomeinaster.bracket-peek",
"formulahendry.auto-close-tag",
"formulahendry.auto-complete-tag",
"formulahendry.auto-rename-tag",
"donjayamanne.githistory",
"lamartire.git-indicators",
"shyykoserhiy.git-autoconfig",
"maattdd.gitless",
"waderyan.gitblame",
"mhutchie.git-graph",
"vincaslt.highlight-matching-tag",
"wholroyd.jinja",
"samuelcolvin.jinjahtml",
"oderwat.indent-rainbow",
"hyesun.py-paste-indent",
"charliermarsh.ruff",
"mutantdino.resourcemonitor",
"christian-kohler.path-intellisense",
"ms-python.black-formatter",
"ms-python.debugpy",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.vscode-python-envs",
"donjayamanne.python-extension-pack",
"teticio.python-envy",
"redhat.ansible",
"redhat.vscode-yaml",
"foxundermoon.shell-format",
"KevinRose.vsc-python-indent",
"njqdev.vscode-python-typehint",
"pflannery.vscode-versionlens",
"Wattenberger.footsteps",
"usernamehw.errorlens",
"yzhang.markdown-all-in-one"
]
}
}
}