We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9319137 + 0e824c4 commit 1e39214Copy full SHA for 1e39214
.devcontainer/devcontainer.json
@@ -2,7 +2,9 @@
2
"name": "Python 3",
3
"image": "mcr.microsoft.com/devcontainers/python",
4
"features": {
5
- "ghcr.io/devcontainers-contrib/features/pre-commit:2": {}
+ "ghcr.io/devcontainers-contrib/features/pre-commit:2": {},
6
+ "ghcr.io/devcontainers-contrib/features/poetry:2": {},
7
+ "ghcr.io/meaningful-ooo/devcontainer-features/homebrew:2": {}
8
},
- "postCreateCommand": "pre-commit install"
9
+ "postCreateCommand": ".devcontainer/setup.sh"
10
}
.devcontainer/setup.sh
@@ -0,0 +1,6 @@
1
+#!/bin/bash
+
+pre-commit install
+brew install withgraphite/tap/graphite
+# gt auth --token $GRAPHITE_TOKEN
0 commit comments