-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
195 lines (164 loc) · 2.62 KB
/
.gitignore
File metadata and controls
195 lines (164 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
# Planning/internal docs
*plan.md
# Temporary refactoring/analysis documents
COVERAGE_REPORT.md
start.md
*_PROGRESS.md
*_SUMMARY.md
*_REPORT.md
# Temporary setup/installation docs (info should be in docs/development/)
INSTALL_VHS.md
VHS_SETUP_SUMMARY.md
CODE_INDEX.md
# Local development (not committed)
/local/
*design/
# ===========================================
# Claude Code - Local/Personal Files
# ===========================================
CLAUDE.local.md
.claude/settings.local.json
.claude/*.local.*
.claude/*/*.local.*
*.session
# Session-specific progress tracking (personal, not shared)
claude-progress.txt
# Build artifacts
dist/
# Binaries
bin/
/nylas
*.test
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test coverage
*coverage*.out
coverage.html
*.coverprofile
ci-full.txt
ci-full-verification.txt
*-verification.txt
test-integration.txt
internal/air/photos.db
# IDE
.idea/
.vscode/
# Playwright MCP artifacts
.playwright*
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Go
vendor/
# Node.js
node_modules/
internal/ui/static/js/package*.json
internal/ui/static/js/*.test.js
# ===========================================
# SECURITY - Credential & Secret Protection
# ===========================================
# Environment files (may contain API keys)
.env
.env.*
.env.local
.env.development
.env.test
.env.production
*.env
# Credential files
credentials.json
credentials.yaml
credentials.yml
*credentials*
*credential*
!*credential*.go
!*credentials*.go
# API keys and tokens
*.key
*.pem
*.p12
*.pfx
api_key*
apikey*
*api_key*
*apikey*
*token*
!*_test.go
!internal/cli/auth/token.go
# Secret files
secrets.json
secrets.yaml
secrets.yml
*secrets*
*secret*
!internal/ports/secrets.go
!internal/cli/webhook/rotate_secret.go
!internal/cli/webhook/verify_rotate_test.go
# OAuth tokens
oauth_token*
access_token*
refresh_token*
*.token
# Config files that might contain secrets
config.local.*
config.private.*
*.private.*
local.yaml
local.yml
local.json
# Nylas specific
nylas_credentials*
.nylas/
nylas.env
# Certificate files
*.crt
*.cer
*.ca-bundle
# SSH keys
id_rsa*
id_dsa*
id_ecdsa*
id_ed25519*
*.ppk
# GPG
*.gpg
*.asc
secring.*
# AWS
.aws/
aws_credentials
# GCP
service_account*.json
gcp_credentials*
# Azure
.azure/
# Backup files that might contain secrets
*.bak
*.backup
*.old
*.orig
# Log files (may contain sensitive data)
*.log
logs/
# Temporary files
tmp/
temp/
*.tmp
# Test artifacts (may expose test credentials)
test_output/
test_results/
test-results/
playwright-report/
# ===========================================
# End Security Section
# ===========================================
.mcp.json
*phase*.md
ci-output.txt
ci-results.txt