- notification-hook.sh에서 Slack 웹훅 관련 코드 제거하고 Telegram 알림으로 변경 - lotto_auto_buy.py에서 Slack 알림 기능을 Telegram으로 대체 - 환경 변수 설정에 Telegram 관련 변수 추가 - 설정 파일에서 Slack 웹훅 URL 제거
50 lines
937 B
JSON
50 lines
937 B
JSON
{
|
|
"permissions": {
|
|
"allow": [
|
|
"Bash(pip3 install selenium 2>&1)",
|
|
"Bash(python3 lotto_auto_buy.py 2>&1)"
|
|
]
|
|
},
|
|
"hooks": {
|
|
"Notification": [
|
|
{
|
|
"matcher": "*",
|
|
"hooks": [
|
|
{
|
|
"type": "command",
|
|
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/notification-hook.sh"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"PreToolUse": [
|
|
{
|
|
"matcher": "*",
|
|
"hooks": [
|
|
{
|
|
"type": "command",
|
|
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/pre-tool-hook.sh"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"Stop": [
|
|
{
|
|
"matcher": "*",
|
|
"hooks": [
|
|
{
|
|
"type": "command",
|
|
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/stop-hook.sh"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"enabledMcpjsonServers": [
|
|
"context7",
|
|
"playwright",
|
|
"sequential-thinking",
|
|
"shadcn"
|
|
]
|
|
}
|