53 lines
620 B
Plaintext
53 lines
620 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.venv/
|
|
venv/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Editors / OS
|
|
.vscode/
|
|
.idea/
|
|
.DS_Store
|
|
*.swp
|
|
*.swo
|
|
.claude/
|
|
|
|
# Env / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
|
|
# Project artefacts (non versionati: troppo grandi o rigenerabili)
|
|
state/*.db
|
|
state/*.db-journal
|
|
state/*.db-wal
|
|
state/*.db-shm
|
|
runs.db
|
|
runs.db-journal
|
|
runs.db-wal
|
|
runs.db-shm
|
|
series/
|
|
*.parquet
|
|
*.feather
|
|
/data/
|
|
checkpoints/
|
|
logs/
|
|
*.log
|
|
|
|
# OMC state (auto-orchestration)
|
|
.omc/
|
|
|
|
# Build / dist
|
|
build/
|
|
dist/
|
|
*.egg
|
|
|
|
# Pythagoras source PDFs (local only, not tracked)
|
|
src/strategy_pythagoras/Pythagoras/*.pdf
|