-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
91 lines (70 loc) · 1.11 KB
/
.gitignore
File metadata and controls
91 lines (70 loc) · 1.11 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
# Ignore operating system and IDE generated files
.DS_Store
Thumbs.db
.vscode/
.idea/
*.pem
# Ignore build artifacts and compiled code
node_modules/
build/
# dist/
*.log
*.tmp
.pnpm-store
# Ignore package manager files
package-lock.json
yarn.lock
pnpm-lock.yaml
# Ignore environment-specific files
.env
.env.local
.env.*.local
# Ignore dependency directories
bower_components/
jspm_packages/
# Ignore configuration files
# *.conf
# *.config
# Ignore system and backup files
*.swp
*~
*.bak
*.backup
# Ignore user-specific files
*.sublime-workspace
# Ignore database files
*.sqlite
*.sqlite3
*.db
# Ignore editor backup files
*.swo
*.swn
*.swm
*.swo
*.swp
# Ignore node.js debug logs
node_modules/debug.log
# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints/
# next.js
.next/
next-env.d.ts
# Composer
#vendor/
# vercel
.vercel
# typescript
*.tsbuildinfo
# database
/prisma/db.sqlite
/prisma/db.sqlite-journal
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# Ignore custom folders or files
custom_folder/
custom_file.ext
# Ignore all files and directories named '*-updated'
*-updated