Files
ai-trade/.gitignore
gahusb 8a2fac03a6 feat(signal_v2): foundation — config + state + requirements
- signal_v2/config.py: Settings dataclass loading web-ai/.env explicitly
- signal_v2/state.py: PollState dataclass + module-level singleton
- requirements.txt: httpx / fastapi / uvicorn / pytest-asyncio / respx
- .gitignore: signal_v2/data/*.db (WAL/SHM)
- empty tests/ marker

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-16 03:35:36 +09:00

66 lines
650 B
Plaintext

# Environment Variables
.env
.env.local
.env.*
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual Environment
venv/
env/
ENV/
.venv/
# IDE settings
.vscode/
.idea/
*.swp
*.swo
# Data & Logs (Runtime generated)
data/
*.log
daily_trade_history.json
watchlist.json
bot_ipc.json
# Test
tests/
tests/*
# System
Thumbs.db
Desktop.ini
# stock
KIS_SETUP.md
# Claude Code subagent state
.claude/
# Signal V2 runtime data
signal_v2/data/*.db
signal_v2/data/*.db-*