Skip to content

Commit 9f9a0bd

Browse files
committed
Install typer completion
1 parent 673a746 commit 9f9a0bd

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"remoteEnv": {
1313
"UV_CACHE_DIR": "${containerWorkspaceFolder}/.cache/uv"
1414
},
15-
"postCreateCommand": "uv sync && uv run ./cli.py init-workspace",
15+
"postCreateCommand": "bash .devcontainer/post-create.sh",
1616
"customizations": {
1717
"vscode": {
1818
"extensions": [

.devcontainer/post-create.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)