42 lines
476 B
Plaintext
42 lines
476 B
Plaintext
# Secrets — never commit
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.env
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.pytest_cache/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|
|
|
|
# Go
|
|
*.test
|
|
coverage.out
|
|
coverage.html
|
|
|
|
# Node
|
|
node_modules/
|
|
frontend/dist/
|
|
|
|
# Models and logs (runtime artifacts)
|
|
bot_detector_models/
|
|
bot_detector_logs/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# Exported prod data (large binary files)
|
|
scripts/data/prod-export/*.native
|
|
|
|
# Vagrant VM state
|
|
tests/vm/.vagrant/machines/
|