etsy-finance-tracker/.gitignore
dlawler489 4920db6c51 Organize data storage and enhance security
- Create secure data/ directory structure for local business files
- Add comprehensive data organization guide with security notes
- Move all sensitive files to protected data/ directory
- Enhanced .gitignore to exclude entire data/ directory (except README)
- Provide clear instructions for local data file management
- Ensure no business data can accidentally be committed to public repo
2026-04-20 09:50:38 +10:00

125 lines
No EOL
1.5 KiB
Text

# Dependencies
node_modules/
client/node_modules/
server/node_modules/
# Build outputs
client/dist/
server/dist/
build/
# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
*.log
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Coverage directory used by tools like istanbul
coverage/
*.lcov
# nyc test coverage
.nyc_output
# Dependency directories
node_modules/
jspm_packages/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Next.js build output
.next
# Nuxt.js build / generate output
.nuxt
dist
# Storybook build outputs
.out
.storybook-out
# Temporary folders
tmp/
temp/
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Data files - NEVER commit sensitive business data
data/
!data/README.md
*.csv
*.xlsx
*.xls
*.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
.vscode/settings.json