Files
atm/.gitignore
Marius Mutu 9c44eb6e31 feat: mută secretele Discord/Telegram din TOML în .env
TOML-urile din configs/ rămân 100% calibrare — safe to commit. Secretele
(ATM_DISCORD_URL, ATM_TG_TOKEN, ATM_TG_CHAT) trăiesc în .env la rădăcină
(ignored), cu loader stdlib (shell wins peste file). Validare fail-fast
pentru env lipsă, placeholder REPLACE_ME, chat_id non-numeric.

Include .env.example + secţiune README §Secrets. Tests: 19 noi (env loader +
missing-env + placeholder + chat_id + regression post-migrate snapshot).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-21 09:37:24 +03:00

77 lines
836 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: now committable (secrets live in .env — see .env.example)
# 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