We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d21897 commit 11d3b34Copy full SHA for 11d3b34
.devcontainer/devcontainer.json
@@ -12,7 +12,7 @@
12
"remoteEnv": {
13
"UV_CACHE_DIR": "${containerWorkspaceFolder}/.cache/uv"
14
},
15
- "postCreateCommand": "uv sync && npm install && 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,6 @@
1
+#!/usr/bin/env bash
2
+
3
+npm install
4
+uv sync
5
+uv run typer --install-completion
6
+uv run ./cli.py init-workspace
0 commit comments