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