-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitIgnore
More file actions
81 lines (74 loc) · 1.26 KB
/
.gitIgnore
File metadata and controls
81 lines (74 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
# -------------------------
# OS / IDE
# -------------------------
.DS_Store
Thumbs.db
.idea/
.vscode/
*.iml
# -------------------------
# Env / Secrets
# -------------------------
**/.env
**/.env.*
!**/.env.example
!**/.env.sample
!**/.env.template
# (선택) 인증/키 파일 실수 커밋 방지
*.pem
*.key
*.crt
*.p12
*.keystore
*.jks
# -------------------------
# Docker / Compose
# -------------------------
*.pid
**/tmp/
docker-data/
# 로컬 전용 오버라이드 파일은 제외
docker-compose.override.yml
# -------------------------
# Node (frontend 등)
# -------------------------
**/node_modules/
**/.pnpm-store/
**/.npm/
**/.yarn/
**/.turbo/
**/.cache/
**/dist/
**/build/
**/.next/
**/out/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# -------------------------
# Java (Spring Boot backend)
# -------------------------
**/target/
**/build/
**/.gradle/
# JVM 크래시 로그
hs_err_pid*
replay_pid*
# Maven/Gradle Wrapper는 커밋 유지 (아래 2줄은 실수 방지 참고)
!gradlew
!gradlew.bat
!gradle/wrapper/**
# -------------------------
# Python (camera-ai)
# -------------------------
**/__pycache__/
**/*.py[cod]
**/.pytest_cache/
**/.mypy_cache/
**/.ruff_cache/
**/.ipynb_checkpoints/
**/.venv/
**/venv/
**/env/
pip-wheel-metadata/