81 lines
857 B
Plaintext
81 lines
857 B
Plaintext
# cust
|
|
./*.csv
|
|
.claude/
|
|
data/
|
|
|
|
# Allow test fixture data
|
|
!tests/fixtures/data/
|
|
|
|
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
|
|
# Flask specific
|
|
instance/
|
|
.webassets-cache
|
|
*.log
|
|
|
|
# SQLite database files
|
|
*.sqlite3
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Migrations
|
|
migrations/
|
|
|
|
# Environment variables
|
|
.env
|
|
|
|
# Pytest cache files
|
|
.pytest_cache/
|
|
|
|
# Node.js/Frontend (Vite + React + Tailwind CSS)
|
|
|
|
# Node modules
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
|
|
# Local environment variables
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Log files
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Editor directories and files
|
|
.vscode/
|
|
.idea/
|
|
|
|
# General
|
|
|
|
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.swp
|
|
*.swo
|
|
|
|
# Git specific
|
|
.git/
|
|
|
|
# MacOS specific
|
|
**/.DS_Store
|
|
|