forked from arshadpatel/codeX100
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
48 lines (40 loc) · 657 Bytes
/
.gitignore
File metadata and controls
48 lines (40 loc) · 657 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
46
47
48
# Backend (Express.js)
backend/node_modules/
backend/npm-debug.log
backend/yarn-error.log
backend/.env
backend/logs/
backend/*.log
backend/pids/
backend/*.pid
backend/*.pid.lock
# Frontend (HTML, CSS, JS)
frontend/node_modules/
frontend/dist/
frontend/build/
frontend/*.cache
frontend/*.bak
# Common dependency directories
node_modules/
# IDE files
.vscode/
.idea/
*.suo
.ntvs
*.njsproj
*.sln
# Operating system files
.DS_Store
Thumbs.db
# Temporary files
*.tmp
*.swp
# Coverage directory
backend/coverage/
frontend/coverage/
# Log and error files
*.log
*.error.log
# Build and dist files for both backend and frontend
backend/build/
frontend/build/