We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e13aa6a commit 5cab899Copy full SHA for 5cab899
2 files changed
.gitignore
@@ -95,8 +95,9 @@ node_modules.bak
95
# SwiftLint
96
swiftlint/*
97
98
-# Sample app
+# Environment variables
99
samples/*/.env
100
+.env
101
102
# Local Claude Code settings that should not be committed
103
.claude/settings.local.json
.vscode/tasks.json
@@ -13,6 +13,25 @@
13
"kind": "build",
14
"isDefault": true
15
}
16
+ },
17
+ {
18
+ "label": "Claude",
19
+ "type": "shell",
20
+ "command": "CLAUDE_PATH=$(grep '^CLAUDE_PATH=' .env | cut -d '=' -f2 | tr -d '\"') && $CLAUDE_PATH",
21
+ "icon": {
22
+ "color": "terminal.ansiRed",
23
+ "id": "robot"
24
25
+ "presentation": {
26
+ "reveal": "always",
27
+ "panel": "new",
28
+ "focus": true
29
30
+ "group": {
31
+ "kind": "none",
32
+ "isDefault": true
33
34
+ "problemMatcher": []
35
36
]
37
0 commit comments