We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70b307d commit e033166Copy full SHA for e033166
.devcontainer/devcontainer.json
@@ -0,0 +1,31 @@
1
+{
2
+ "name": "py-key-value",
3
+ "image": "ghcr.io/astral-sh/uv:python3.10-bookworm",
4
+ "features": {
5
+ "ghcr.io/devcontainers/features/node:1": {
6
+ "version": "lts"
7
+ }
8
+ },
9
+ "customizations": {
10
+ "vscode": {
11
+ "extensions": [
12
+ "ms-python.python",
13
+ "ms-python.vscode-pylance",
14
+ "charliermarsh.ruff",
15
+ "DavidAnson.vscode-markdownlint"
16
+ ],
17
+ "settings": {
18
+ "python.defaultInterpreterPath": "/usr/local/bin/python",
19
+ "python.testing.pytestEnabled": true,
20
+ "python.testing.unittestEnabled": false,
21
+ "python.testing.pytestArgs": [
22
+ "key-value",
23
+ "--import-mode=importlib",
24
+ "-vv"
25
+ ]
26
27
28
29
+ "postCreateCommand": "make sync",
30
+ "remoteUser": "root"
31
+}
0 commit comments