-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
47 lines (40 loc) · 930 Bytes
/
.gitignore
File metadata and controls
47 lines (40 loc) · 930 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
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
./frontend/node_modules
./frontend/.pnp
./frontend/.pnp.js
./frontend/
# testing
./frontend/coverage
./frontend/
# production
./frontend/build
./frontend/
# misc
./frontend/.DS_Store
./frontend/.env.local
./frontend/.env.development.local
./frontend/.env.test.local
./frontend/.env.production.local
./frontend/
./frontend/npm-debug.log*
./frontend/yarn-debug.log*
./frontend/yarn-error.log*
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
./backend/node_modules
./backend/.pnp
./backend/.pnp.js
# testing
./backend/coverage
# production
./backend/build
# misc
./backend/.DS_Store
./backend/.env.local
./backend/.env.development.local
./backend/.env.test.local
./backend/.env.production.local
./backend/npm-debug.log*
./backend/yarn-debug.log*
./backend/yarn-error.log*