- Delete temp files: _tmp_analysis.py, nul, dashboard_screenshot.png - Move ea/ to archive/ea/ (deprecated) - Move 12 Docker helper scripts (.bat/.sh) to docker/scripts/ - Move 5 Docker docs to docker/docs/ - Move .env.docker.example, requirements-docker.txt to docker/ - Update all scripts with cd to project root for correct path resolution - Update all doc references to new paths - Update .gitignore with bot.pid, bot_output.log, *.png patterns - Update CLAUDE.md, README.md directory trees Root reduced from ~40 files to 12 essential files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
92 lines
959 B
Plaintext
92 lines
959 B
Plaintext
# Environment and secrets
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.pem
|
|
*.key
|
|
credentials.json
|
|
|
|
# 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
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Logs (keep structure, ignore content)
|
|
logs/*.log
|
|
logs/**/*.log
|
|
|
|
# Data files (large)
|
|
data/market_data/
|
|
data/trade_logs/trades/*.csv
|
|
data/trade_logs/ml_data/*.csv
|
|
|
|
# Models (large binary files)
|
|
models/*.pkl
|
|
models/*.joblib
|
|
models/*.h5
|
|
|
|
# Backtest results (generated)
|
|
backtests/results/*.csv
|
|
|
|
# Node modules (dashboard)
|
|
web-dashboard/node_modules/
|
|
web-dashboard/.next/
|
|
web-dashboard/out/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
|
|
# Docker
|
|
docker/data/
|
|
|
|
# Archive
|
|
archive/
|
|
|
|
# Runtime files
|
|
bot.pid
|
|
bot_output.log
|
|
nul
|
|
|
|
# Screenshots
|
|
*.png
|