- formatValue: NULL → '' (empty field with placeholder ∞) - handleChange: Accept ONLY '∞' or 'unlimited' (no other formats) - Input styling: Green only for '∞', empty fields normal color - Simplified legend: Only ∞ or unlimited accepted - Boolean features: Toggle buttons with 1/0 values - Add package-lock.json to .gitignore Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
65 lines
643 B
Plaintext
65 lines
643 B
Plaintext
# Environment
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.venv/
|
|
venv/
|
|
|
|
# Build output
|
|
frontend/dist/
|
|
|
|
# Data (NEVER commit database or user data)
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
data/
|
|
photos/
|
|
uploads/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# IDE
|
|
.vscode/settings.json
|
|
.idea/
|
|
*.swp
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker overrides
|
|
docker-compose.override.yml
|
|
|
|
# SSL certificates (never commit)
|
|
nginx/ssl/
|
|
nginx/certbot/
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.csr
|
|
|
|
# Pytest
|
|
.pytest_cache/
|
|
.coverage
|
|
coverage/
|
|
|
|
# Temp
|
|
tmp/
|
|
*.tmp
|
|
|
|
#.claude Konfiguration
|
|
.claude/
|
|
.claude/settings.local.jsonfrontend/package-lock.json
|