# Git 관련
.git
.gitignore
.gitattributes

# 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

# 가상환경
venv/
env/
ENV/
.venv

# IDE 설정
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# 로그 파일
*.log
logs/

# 데이터베이스
*.sqlite
*.db

# 설정 파일 (예시 파일은 포함)
.env
mcp_agent.config.yaml
mcp_agent.secrets.yaml
trading/config/kis_devlp.yaml

# 결과물 디렉토리
reports/
pdf_reports/
html_reports/
charts/
telegram_messages/sent/

# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# 테스트 관련
.pytest_cache/
.coverage
htmlcov/

# 임시 파일
*.tmp
*.temp
*.bak

# Docker 관련
Dockerfile
docker-compose.yml
.dockerignore

# 문서
README.md
CONTRIBUTING.md
docs/
LICENSE

# 기타
.cache/
