Skip to content

Commit bdf6890

Browse files
launch claude task
1 parent 519651c commit bdf6890

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,9 @@ node_modules.bak
9595
# SwiftLint
9696
swiftlint/*
9797

98-
# Sample app
98+
# Environment variables
9999
samples/*/.env
100+
.env
100101

101102
# Local Claude Code settings that should not be committed
102103
.claude/settings.local.json

.vscode/tasks.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
{
1818
"label": "Claude",
1919
"type": "shell",
20-
"command": "bash -ic claude",
20+
"command": "CLAUDE_PATH=$(grep '^CLAUDE_PATH=' .env | cut -d '=' -f2 | tr -d '\"') && $CLAUDE_PATH",
2121
"icon": {
2222
"color": "terminal.ansiRed",
2323
"id": "robot"
@@ -30,7 +30,8 @@
3030
"group": {
3131
"kind": "none",
3232
"isDefault": true
33-
}
33+
},
34+
"problemMatcher": []
3435
}
3536
]
3637
}

0 commit comments

Comments
 (0)