97 lines
985 B
Plaintext
97 lines
985 B
Plaintext
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
venv/
|
|
.venv/
|
|
ENV/
|
|
env/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Node / Frontend
|
|
node_modules/
|
|
frontend/dist/
|
|
frontend/node_modules/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.npm
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
|
|
# Data directories (created at runtime)
|
|
data/
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Secrets and credentials
|
|
*.pem
|
|
*.key
|
|
cookies/
|
|
config/
|
|
|
|
# Build artifacts
|
|
backend/static/
|
|
|
|
# Extension packages
|
|
*.xpi
|
|
extension-dist/
|
|
|
|
# Analysis and debugging artifacts
|
|
analysis/
|
|
**/analysis_*.json
|
|
**/analysis_*.txt
|
|
**/failed_logs_export_*.json
|
|
ERROR_RECOGNITION_ANALYSIS.md
|