-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
105 lines (81 loc) · 1.48 KB
/
.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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# ============================
# Common
# ============================
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Dependency directories
node_modules/
jspm_packages/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# IDEs and editors
.vscode/
.idea/
*.suo
*.ntvs*
*.njsproj
*.sln
# OS generated files
.DS_Store
Thumbs.db
# ============================
# Backend (Node.js/Express)
# ============================
# Environment variables
backend/.env
backend/.env.local
backend/.env.development.local
backend/.env.test.local
backend/.env.production.local
# Build output
backend/dist/
backend/build/
# Coverage reports
backend/coverage/
# Temporary files
backend/tmp/
backend/temp/
# ============================
# Frontend (React)
# ============================
# Environment variables
frontend/.env
frontend/.env.local
frontend/.env.development.local
frontend/.env.test.local
frontend/.env.production.local
# Build output
frontend/build/
frontend/dist/
# Testing
frontend/coverage/
# Static cache
frontend/.cache/
# Node modules
frontend/node_modules/
# Miscellaneous
frontend/public/favicon.ico
frontend/public/manifest.json
# Service worker
frontend/public/service-worker.js
# Temporary files
frontend/tmp/
frontend/temp/
# ============================
# Other
# ============================
# Ignore all files in the root that are not needed
*.pem
*.key
*.crt
# Backup files
*~
*.bak
*.swp
# Ignore any other files or directories as needed