77 lines
654 B
Plaintext
77 lines
654 B
Plaintext
# Git 관련
|
|
.git
|
|
.gitignore
|
|
|
|
# Python 관련
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.tox
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.log
|
|
.git
|
|
.mypy_cache
|
|
.pytest_cache
|
|
.hypothesis
|
|
|
|
# 개발 환경
|
|
.venv
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.env
|
|
.env.*
|
|
!.env.live
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS 관련
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# 프로젝트 특정
|
|
tmp/
|
|
logs/
|
|
*.tmp
|
|
*.log
|
|
|
|
# Docker 관련
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose*.yml
|
|
|
|
# 문서
|
|
*.md
|
|
!README.md
|
|
|
|
# 테스트
|
|
test_*.py
|
|
*_test.py
|
|
tests/
|
|
|
|
# 기타
|
|
.env.example
|
|
env.example
|
|
|
|
*.csv
|
|
*.tmp |