We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 673a746 commit 9f9a0bdCopy full SHA for 9f9a0bd
.devcontainer/devcontainer.json
@@ -12,7 +12,7 @@
12
"remoteEnv": {
13
"UV_CACHE_DIR": "${containerWorkspaceFolder}/.cache/uv"
14
},
15
- "postCreateCommand": "uv sync && uv run ./cli.py init-workspace",
+ "postCreateCommand": "bash .devcontainer/post-create.sh",
16
"customizations": {
17
"vscode": {
18
"extensions": [
.devcontainer/post-create.sh
@@ -0,0 +1,5 @@
1
+#!/usr/bin/env bash
2
+
3
+uv sync
4
+uv run typer --install-completion
5
+uv run ./cli.py init-workspace
0 commit comments