86
.gitignore
vendored
Normal file
86
.gitignore
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
# Secrets and sensitive configuration
|
||||
config/settings.json
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
*.key
|
||||
*.pem
|
||||
*.p12
|
||||
*.pfx
|
||||
.jwt_secret
|
||||
|
||||
# Session files (may contain auth tokens)
|
||||
sessions/
|
||||
cookies/
|
||||
|
||||
# Python cache
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
|
||||
# Virtual environments
|
||||
venv/
|
||||
env/
|
||||
ENV/
|
||||
.venv
|
||||
|
||||
# Database files
|
||||
*.db
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
database/
|
||||
|
||||
# Log files
|
||||
logs/
|
||||
*.log
|
||||
|
||||
# Temporary files
|
||||
temp/
|
||||
tmp/
|
||||
*.tmp
|
||||
*.bak
|
||||
*.swp
|
||||
*~
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.sublime-*
|
||||
.DS_Store
|
||||
|
||||
# Build outputs
|
||||
dist/
|
||||
build/
|
||||
*.egg-info/
|
||||
web/frontend/dist/
|
||||
web/frontend/node_modules/
|
||||
web/frontend-dist/
|
||||
web/backend/static/
|
||||
|
||||
# Claude Code
|
||||
.claude/
|
||||
|
||||
# Package manager
|
||||
node_modules/
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
|
||||
# Runtime data and media
|
||||
cache/
|
||||
data/
|
||||
downloads/
|
||||
|
||||
# Backup files
|
||||
backups/
|
||||
*.backup
|
||||
|
||||
# Playwright browsers
|
||||
.playwright/
|
||||
|
||||
# OS files
|
||||
Thumbs.db
|
||||
.DS_Store
|
||||
Reference in New Issue
Block a user