mirror of
https://github.com/Xe138/AI-Trader.git
synced 2026-04-01 17:17:24 -04:00
Added dev database files and dev_agent_data directory to gitignore to prevent runtime dev data from being committed to the repository. Patterns added: - data/jobs_dev.db - data/*_dev.db - data/dev_agent_data/ This ensures dev mode runtime data remains local and doesn't pollute version control.
92 lines
1.0 KiB
Plaintext
92 lines
1.0 KiB
Plaintext
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# 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
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Runtime files
|
|
.runtime_env.json
|
|
|
|
# Test and temporary files
|
|
test.py
|
|
delete.py
|
|
refresh_data.sh
|
|
|
|
# Config files (optional - uncomment if needed)
|
|
configs/custom_config.json
|
|
configs/day_config.json
|
|
configs/hour_config.json
|
|
configs/test_config.json
|
|
configs/test_day_config.json
|
|
|
|
# Data directories (optional - uncomment if needed)
|
|
data/agent_data/test*/
|
|
data/agent_data/*test*/
|
|
data/dev_agent_data/
|
|
data/merged_daily.jsonl
|
|
data/merged_hour.jsonl
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# pytest
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Git worktrees
|
|
.worktrees/
|
|
|
|
data/jobs.db
|
|
data/jobs_dev.db
|
|
data/*_dev.db
|