-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
45 lines (41 loc) · 926 Bytes
/
Copy path.gitignore
File metadata and controls
45 lines (41 loc) · 926 Bytes
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
# ==========================================
# 1. OS & 디렉토리 숨김 파일
# ==========================================
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# ==========================================
# 2. IDE (에디터) 설정 파일
# ==========================================
.idea/
.vscode/
*.swp
*.swo
*.sublime-workspace
# ==========================================
# 3. 환경 변수 및 보안 파일 (가장 중요!)
# ==========================================
.env
.env.*
*.local
*.pem
*.key
credentials.json
# ==========================================
# 4. 공통 로그 파일
# ==========================================
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# ==========================================
# 5. 최상단 실수 방지 (혹시 모를 빌드 찌꺼기)
# ==========================================
node_modules/
build/
dist/
coverage/