-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
92 lines (83 loc) · 1.26 KB
/
Copy path.gitignore
File metadata and controls
92 lines (83 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# === Python (backend, ai) ===
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
env/
ENV/
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
# === Node.js (frontend) ===
node_modules/
dist/
build/
.next/
.cache/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# === 환경변수 (절대 커밋 금지 - 실제 비밀번호 파일들) ===
.env
.env.local
.env.development
.env.production
.env.*.local
!.env.example
### .env.example 파일은 제외로 이 파일 보고 .env를 어떻게 채워야 하는지 알려줌
# === IDE / Editor ===
.vscode/
.idea/
*.swp
*.swo
*~
*.sublime-*
# === OS ===
.DS_Store
Thumbs.db
desktop.ini
# === AI 모델 / 데이터 (대용량) ===
*.pth
*.pt
*.onnx
*.h5
*.ckpt
*.bin
ai/models/*.pt
ai/models/*.pth
ai/data/raw/
ai/data/processed/
ai/notebooks/.ipynb_checkpoints/
ai/gesture_dataset*/
ai/object_dataset*/
ai/object_raw*/
ai/temp/
# 브라우저 서빙용 복사본 (predev/prebuild가 자동 생성 — 원본만 git 추적)
frontend/public/models/
frontend/public/mediapipe-wasm/
# === Database 로컬 파일 ===
*.db
*.sqlite
*.sqlite3
# === 빌드 / 배포 ===
*.pyc
*.pyo
*.pyd
*.egg
.tox/
.eggs/
# === 임시 파일 ===
tmp/
temp/
logs/
# Claude / Claude Code
CLAUDE.md
.claude/