Files
AutoCoinTrader2/.dockerignore

79 lines
750 B
Plaintext

# 개발/테스트 관련 파일
src/tests/
src/__pycache__/
src/tests/__pycache__/
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
# 테스트 파일
test_*.py
*_test.py
pytest.ini
.pytest_cache/
# 문서
docs/
*.md
!README.md
# Git
.git/
.gitignore
.gitattributes
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# 환경 변수 (보안)
.env
.env.local
.env.*.local
# 참조/백업 코드 (개발용)
ref/
# 로그 (도커 내부에서 생성)
logs/
*.log
# 데이터 파일 (마운트로 관리)
data/
*.json
# 백업 파일
*.backup
*.backup_*
*.corrupted.*
*.tmp
# OS
.DS_Store
Thumbs.db
# Python 가상환경
venv/
env/
ENV/
.venv/
# 빌드 결과물
build/
dist/
*.egg-info/
# Coverage
.coverage
htmlcov/
.tox/
# Jupyter
.ipynb_checkpoints/
*.ipynb