Files
XauBot/.gitignore
T
GifariKemal 0d25548ed5 refactor: restructure repository and add README, CLAUDE.md, LICENSE
- Move utility scripts to scripts/ (check_market, check_positions, etc.)
- Move test files to tests/ (test_modules, test_mt5_connection, etc.)
- Move deprecated dashboards to archive/
- Move research files to docs/research/
- Add sys.path fix to all moved Python files
- Rewrite README.md with architecture diagram and badges
- Add CLAUDE.md project guide
- Add MIT LICENSE
- Update .gitignore with archive/ pattern

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-06 13:22:46 +07:00

87 lines
906 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/
# Junk
nul