-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
140 lines (114 loc) · 2.33 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# Backend and Frontend specific ignores
# Node.js
backend/node_modules/
frontend/node_modules/
backend/npm-debug.log
frontend/npm-debug.log
backend/yarn-error.log
frontend/yarn-error.log
# Environment variables
backend/.env
frontend/.env
backend/.env.local
frontend/.env.local
backend/.env.development.local
frontend/.env.development.local
backend/.env.test.local
frontend/.env.test.local
backend/.env.production.local
frontend/.env.production.local
# Build output
backend/build/
frontend/build/
backend/dist/
frontend/dist/
# Logs
backend/logs
frontend/logs
backend/*.log
frontend/*.log
# Editor directories and files
backend/.idea/
frontend/.idea/
backend/.vscode/
frontend/.vscode/
backend/*.swp
frontend/*.swp
backend/*.swo
frontend/*.swo
# Temporary files
backend/*.tmp
frontend/*.tmp
backend/*.temp
frontend/*.temp
# Coverage directory used by tools like istanbul
backend/coverage/
frontend/coverage/
# Dependency directories
backend/jspm_packages/
frontend/jspm_packages/
# Optional npm cache directory
backend/.npm
frontend/.npm
# Optional eslint cache
backend/.eslintcache
frontend/.eslintcache
# Optional REPL history
backend/.node_repl_history
frontend/.node_repl_history
# Output of 'npm pack'
backend/*.tgz
frontend/*.tgz
# Yarn Integrity file
backend/.yarn-integrity
frontend/.yarn-integrity
# parcel-bundler cache (https://parceljs.org/)
backend/.cache
frontend/.cache
backend/.parcel-cache
frontend/.parcel-cache
# Next.js build output
backend/.next
frontend/.next
backend/out
frontend/out
# Nuxt.js build / generate output
backend/.nuxt
frontend/.nuxt
# Gatsby files
backend/.cache/
frontend/.cache/
backend/public
frontend/public
# VuePress build output
backend/.vuepress/dist
frontend/.vuepress/dist
# Serverless directories
backend/.serverless/
frontend/.serverless/
# FuseBox cache
backend/.fusebox/
frontend/.fusebox/
# DynamoDB Local files
backend/.dynamodb/
frontend/.dynamodb/
# TernJS port file
backend/.tern-port
frontend/.tern-port
# Stores VSCode versions used for testing VSCode extensions
backend/.vscode-test
frontend/.vscode-test
# yarn v2
backend/.yarn/cache
frontend/.yarn/cache
backend/.yarn/unplugged
frontend/.yarn/unplugged
backend/.yarn/build-state.yml
frontend/.yarn/build-state.yml
backend/.yarn/install-state.gz
frontend/.yarn/install-state.gz
backend/.pnp.*
frontend/.pnp.*
# OS generated files
.DS_Store
Thumbs.db