Files
atm/.gitignore
Marius Mutu 153196f762 chore(git): track logs dir; ignore runtime state files
Add logs/.gitkeep to track directory structure. Extend .gitignore with
logs/fires, logs/pause.flag, logs/detections/, and configs/current.txt.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-18 10:10:21 +03:00

80 lines
900 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
*.egg
MANIFEST
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
.hypothesis/
.mypy_cache/
.ruff_cache/
.pyright/
# Virtualenv
.venv/
venv/
env/
ENV/
# IDE
.vscode/
.idea/
*.swp
*.swo
.DS_Store
# ATM runtime artefacts
logs/*.jsonl
logs/dead_letter.jsonl
logs/detections/
logs/fires
logs/pause.flag
samples/*.png
samples/*.jpg
samples/labels.json
trades.jsonl
# configs: keep template only; ignore generated calibration and runtime state
configs/*.toml
!configs/example.toml
configs/current.txt
# Claude scheduler state
.claude/
# Secrets
config.toml
.env
*.secret
# Images in root (e.g. reference screenshots)
/image.png
image*.png
# Calibration debug captures
calibrate_capture_*.png
# Debug captures
debug_*.png
logs/*.png