-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy path.gitignore
More file actions
193 lines (162 loc) · 3.81 KB
/
.gitignore
File metadata and controls
193 lines (162 loc) · 3.81 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
# .NET build outputs
bin/
obj/
out/
# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates
# Visual Studio
.vs/
*.vscode/settings.json
# Rider
.idea/
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
# .NET Core
project.lock.json
project.fragment.lock.json
artifacts/
# NuGet
*.nupkg
*.snupkg
**/[Pp]ackages/*
!**/[Pp]ackages/build/
*.nuget.props
*.nuget.targets
# Azure Functions
local.settings.json
# =============================================================================
# SECURITY - Sensitive Information Protection
# =============================================================================
# Ignore all Config folder files to prevent credential leaks
Config/
!Config/.gitkeep
# Azure OpenAI Credentials and API Keys
Config/ai-config.local.env
Config/*.local.env
Config/ai-config.env
Config/appsettings.json
Config/appsettings.local.json
Config/appsettings.secrets.json
*.key
*.secret
# Environment files with real credentials
.env
.env.local
.env.production
.env.staging
# API Keys and sensitive configuration
**/appsettings.Production.json
**/appsettings.Staging.json
**/local.settings.json
# =============================================================================
# BUSINESS SENSITIVE - Proprietary Content
# =============================================================================
# COBOL Source Files (Contains proprietary business logic)
source/*
!source/.gitkeep
!source/CUSTOMER-DATA.cpy
!source/CUSTOMER-DISPLAY.cbl
!source/CUSTOMER-INQUIRY.cbl
# Ignore COBOL files everywhere (except sample customer files above)
*.cbl
*.cpy
*.cob
!source/CUSTOMER-DATA.cpy
!source/CUSTOMER-DISPLAY.cbl
!source/CUSTOMER-INQUIRY.cbl
# Generated Output (Contains converted business logic and reverse engineering results)
output/*
!output/.gitkeep
Output/
generated-java/
reverse-engineering-output/
# =============================================================================
# DATABASE FILES - Persistent Local Storage
# =============================================================================
# SQLite migration database (Contains all run data, persists locally)
Data/
Data/migration.db
Data/migration.db-*
*.db
*.db-shm
*.db-wal
# Database backups
*.db.backup
*.sql.backup
migration_backup*.sql
# =============================================================================
# LOGS AND TEMPORARY FILES
# =============================================================================
# All log files (May contain API calls, credentials, business data)
Logs/*
!Logs/.gitkeep
logs/
*.log
Log/
LogFiles/
# Temporary and cache files
*.tmp
*.temp
*.cache
cache/
temp/
# Test outputs and temporary migration files
TestOutput/
test-migration/
migration-temp/
# Backup directories created by cleanup scripts
.cleanup-backup/
backups/
# =============================================================================
# SYSTEM FILES
# =============================================================================
# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Windows
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
*.stackdump
[Dd]esktop.ini
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# =============================================================================
# ALLOW SPECIFIC DOCUMENTATION FILES (Override above excludes)
# =============================================================================
# Keep important documentation that shows capabilities
!docs/examples/*.md
!examples/migration-report-sample.md
!examples/dependency-diagram-sample.md
# Database files (auto-created on first run)
Data/*.db
Data/*.db-*