-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
43 lines (34 loc) · 809 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
# Node.js dependencies
node_modules/
# Logs
logs/
# Environment variables
.env
# Operating system files
.DS_Store
Thumbs.db
# Build and dist directories
build/
dist/
# Express-specific ignores
*.log
*.pid
# IDE-specific ignores
# IntelliJ IDEA
.idea/
# Visual Studio Code
.vscode/
# Other ignores
*.tmp
*.cache
*.DS_Store
*.swp
# Comments:
# Ignore node_modules to avoid committing dependencies
# Ignore logs to avoid committing log files
# Ignore .env to avoid committing environment variables
# Ignore operating system files to avoid committing unnecessary files
# Ignore build and dist directories to avoid committing compiled files
# Ignore Express-specific files to avoid committing unnecessary files
# Ignore IDE-specific files to avoid committing IDE settings
# Ignore other unnecessary files