This repository has been archived on 2025-06-07. You can view files and clone it, but cannot push or open issues or pull requests.
SightRay_Legacy/.gitignore
2025-05-06 21:23:04 +09:00

58 lines
888 B
Plaintext

# ========================================
# Python 관련 무시 파일
# ========================================
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
# 가상환경 (venv)
.venv/
venv/
ENV/
# 테스트, 로그, 데이터
*.log
*.tmp
*.db
*.sqlite3
*.bak
*.swp
# 환경 설정 / API 키 / 민감 정보
.env
.env.*
*.secret
secrets.json
config.json
api_keys.txt
# 파이썬 배포 파일
dist/
build/
*.egg-info/
# Jupyter Notebook 체크포인트
.ipynb_checkpoints/
# ========================================
# 에디터/IDE 관련
# ========================================
.vscode/
.idea/
*.code-workspace
# ========================================
# 시스템 파일
# ========================================
.DS_Store
Thumbs.db
desktop.ini
# ========================================
# Git 자체 관련 (안전)
# ========================================
*.orig
*.rej