refactor: reorganize project structure — consolidate Docker files, clean root

- 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>
This commit is contained in:
GifariKemal
2026-02-08 14:21:11 +07:00
co-authored by Claude Opus 4.6
parent 61877480b3
commit b2dc2dacd7
22 changed files with 110 additions and 68 deletions
+9
View File
@@ -10,6 +10,9 @@ XAUBot AI is an automated XAUUSD (Gold) trading bot that combines Machine Learni
.
├── main_live.py # Main async trading orchestrator
├── train_models.py # Model training script
├── Dockerfile # Docker image (must be at root)
├── docker-compose.yml # Docker orchestration (must be at root)
├── .dockerignore # Docker build exclusions (must be at root)
├── src/ # Core modules
│ ├── config.py # Trading configuration & capital modes
│ ├── mt5_connector.py # MetaTrader 5 connection layer
@@ -49,6 +52,12 @@ XAUBot AI is an automated XAUUSD (Gold) trading bot that combines Machine Learni
│ └── research/ # Research & analysis files
├── web-dashboard/ # Next.js monitoring dashboard
├── docker/ # Docker configuration
│ ├── .env.docker.example # Docker environment template
│ ├── requirements-docker.txt # Docker-specific Python deps
│ ├── init-db/ # Database init scripts
│ ├── scripts/ # Docker helper scripts (.bat/.sh)
│ └── docs/ # Docker documentation
├── archive/ # Deprecated files (gitignored)
└── logs/ # Runtime logs
```