-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
64 lines (52 loc) · 890 Bytes
/
.gitignore
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
# Ignore node_modules folder
node_modules/
info/
# Ignore environment variable files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Ignore logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Ignore runtime data
pids/
*.pid
*.pid.lock
# Ignore coverage directory used by testing frameworks like Jest
coverage/
# Ignore build output
dist/
build/
# Ignore npm and yarn lock files (optional, if you prefer to not track these)
# package-lock.json
# yarn.lock
# pnpm-lock.yaml
# Ignore OS specific files
.DS_Store
Thumbs.db
# Ignore IDE-specific files
.idea/
.vscode/
*.suo
*.ntvs*
*.njsproj
*.sln
# Ignore temporary files
*.tmp
*.temp
# Ignore TypeScript build files (if using TypeScript)
*.tsbuildinfo
# Ignore any files generated by your database
*.sqlite
*.sqlite3
*.db
# Ignore any archive files
*.zip
*.tar.gz
*.rar