Skip to content

Commit

Permalink
Install typer completion
Browse files Browse the repository at this point in the history
  • Loading branch information
medihack committed Feb 16, 2025
1 parent 673a746 commit 9f9a0bd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"remoteEnv": {
"UV_CACHE_DIR": "${containerWorkspaceFolder}/.cache/uv"
},
"postCreateCommand": "uv sync && uv run ./cli.py init-workspace",
"postCreateCommand": "bash .devcontainer/post-create.sh",
"customizations": {
"vscode": {
"extensions": [
Expand Down
5 changes: 5 additions & 0 deletions .devcontainer/post-create.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash

uv sync
uv run typer --install-completion
uv run ./cli.py init-workspace

0 comments on commit 9f9a0bd

Please sign in to comment.