Security: Remove sensitive business data from repository
- Remove Excel business tracker spreadsheet from git tracking - Enhanced .gitignore to exclude all business documents: - CSV files, Excel files, PDF documents - Transaction statements and business trackers - Preserve essential config files (package.json, tsconfig, etc.) - Protect sensitive financial and customer data from public exposure
This commit is contained in:
parent
9e1a098a70
commit
ec40a3564e
2 changed files with 21 additions and 1 deletions
22
.gitignore
vendored
22
.gitignore
vendored
|
|
@ -95,9 +95,29 @@ temp/
|
||||||
ehthumbs.db
|
ehthumbs.db
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
|
|
||||||
# Data files (optional - remove if you want to include sample data)
|
# Data files - NEVER commit sensitive business data
|
||||||
*.csv
|
*.csv
|
||||||
|
*.xlsx
|
||||||
|
*.xls
|
||||||
*.pdf
|
*.pdf
|
||||||
|
*.json
|
||||||
|
!package.json
|
||||||
|
!package-lock.json
|
||||||
|
!tsconfig*.json
|
||||||
|
!tailwind.config.js
|
||||||
|
!vite.config.ts
|
||||||
|
!postcss.config.js
|
||||||
|
|
||||||
|
# Business documents and statements
|
||||||
|
*statement*
|
||||||
|
*Statement*
|
||||||
|
*transaction*
|
||||||
|
*Transaction*
|
||||||
|
*business*
|
||||||
|
*Business*
|
||||||
|
*tracker*
|
||||||
|
*Tracker*
|
||||||
|
LayerXLayer*
|
||||||
|
|
||||||
# Local development files
|
# Local development files
|
||||||
.vscode/settings.json
|
.vscode/settings.json
|
||||||
Binary file not shown.
Loading…
Reference in a new issue