-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
231 lines (214 loc) · 5.52 KB
/
.gitignore
File metadata and controls
231 lines (214 loc) · 5.52 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
# =============================================================================
# Employee Recognition App - GitHub Repository .gitignore (v1.0.0)
# =============================================================================
#
# Copyright 2025 Kyle J. Coder
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# =============================================================================
# This file manages what is included in the public GitHub repository while
# maintaining development files locally. The src/ folder and core documentation
# are included for public distribution.
# =============================================================================
# ================================
# EXCLUDE: Development Environment
# ================================
# VS Code and development environment files
.vscode/
*.code-workspace
# ================================
# EXCLUDE: Local Assets & Data
# ================================
# Local assets not intended for public distribution
assets/
environments/
security/
# ================================
# EXCLUDE: Archives & Backups
# ================================
# Archive folders and backup files
archive/
*.backup
*.bak
*.old
*.tmp
*.temp
*_backup.*
*_archive.*
*_old.*
# ================================
# EXCLUDE: Scripts & Automation (Local Development Only)
# ================================
# Local development scripts and automation tools (HIDDEN from public)
scripts/
scripts/**
repository_manager/
.gitmessage
.git/hooks/
# NOTE: Some public PowerShell scripts are in src/v1.0.x/v1.0.0/powershell/ and are INCLUDED via inclusion exemption at the bottom
# ================================
# EXCLUDE: Power Platform Binaries & Connections
# ================================
# Power Platform files excluded from public release
Connections/
DataSources/
other/
temp/
.pac/
dist/
build/
releases/
# ================================
# EXCLUDE: Documentation & Analysis (Local Only)
# ================================
# Local documentation and analysis files
docs/**
docs/CHANGELOG_ENFORCEMENT.md
docs/CHANGELOG_ENFORCEMENT_SUMMARY.md
docs/legacy/
docs/flow-maps/
docs/links/
docs/llm_analysis/
docs/REFERENCE/
docs/STATUS/
docs/training/
docs/working_docs/
docs/project_analysis_documents/
docs/**/DRAFT_*
docs/**/TODO_*
docs/**/*Preview*.html
docs/**/*Experiment*.md
docs/**/*Extracted*.html
CHANGELOG_draft.md
PROJECT_ORGANIZATION.md
REPOSITORY_TRANSFORMATION.md
DEVELOPMENT_TASKS.md
GITHUB_OPTIMIZATION_PLAN.md
WORKSPACE_*.md
*_MIGRATION_*.md
# ================================
# EXCLUDE: Testing & Development Data
# ================================
# Testing files and development data
testing/
**/test
**/tests
*.test.*
*_test.*
# ================================
# EXCLUDE: Binary Files & Archives
# ================================
# Binary files, documents, and archives
*.pdf
*.docx
*.doc
*.pptx
*.ppt
*.xlsx
*.xls
*.msg
*.vsdx
*.vsd
*.zip
*.rar
*.7z
*.tar.gz
**/*_exportedZip.zip
**/*_PowerAutomateFlow*.zip
**.zip
**/*.zip
**/.zip/**
!**/src/power-apps/**/.zip/**
**/archive/**
# ================================
# EXCLUDE: Power BI Files with PHI/Sensitive Data
# ================================
# Power BI development files containing real PHI and sensitive information
*.pbix
src/analytics/data-extracts/
src/analytics/powerbi/development/*.pbix
# NOTE: .pbit template files are ALLOWED (sanitized, no PHI)
!src/analytics/powerbi/development/*.pbit
# ================================
# EXCLUDE: Environment & Configuration
# ================================
# Environment and configuration files
*.env
.env.*
config.local.*
settings.local.*
copilot-export/
# ================================
# EXCLUDE: Logs & Debug Files
# ================================
# Log files and debug output
logs/
*.log
debug.log
error.log
*.zip.bak
# ================================
# EXCLUDE: OS Generated Files
# ================================
# Operating system generated files
.DS_Store
.DS_Store?
Thumbs.db
ehthumbs.db
Desktop.ini
*.lnk
# ================================
# EXCLUDE: Node.js (if applicable)
# ================================
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# ================================
# EXCLUDE: Python (if applicable)
# ================================
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
env/
venv/
# ================================
# EXCLUDE: Database Files (if applicable)
# ================================
*.mdf
*.ldf
*.ndf
# ================================
# EXCEPTIONS: Public Release Content
# ================================
# Explicitly include source code and documentation for public release
!.github/**
!.github/copilot-instructions(public).md
!docs/NOTICE
!docs/CONTRIBUTING.md
!docs/PROJECT_STATUS.md
!docs/SECURITY.md
!src/**
# Re-exclude sensitive analytics files (must come after !src/**)
src/analytics/data-extracts/**
src/analytics/powerbi/development/*.pbix
!src/analytics/powerbi/development/*.pbit
!LICENSE
!CHANGELOG.md
!README.md
# Explicitly exclude the following from public release
.github/copilot-instructions.md
RecursiveDirectoryAnalysis_*.csv