-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.gitignore
88 lines (72 loc) · 1.9 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
# === Front end ===
# dependencies
front-end/baomoi/node_modules/
# Expo
front-end/baomoi/.expo/
front-end/baomoi/dist/
front-end/baomoi/web-build/
# Native
front-end/baomoi/*.mobileprovision
front-end/baomoi/*.orig.*
front-end/baomoi/*.jks
front-end/baomoi/*.p8
front-end/baomoi/*.p12
front-end/baomoi/*.key
front-end/baomoi/*.mobileprovision
# Metro
front-end/baomoi/.metro-health-check*
# debug
front-end/baomoi/npm-debug.*
front-end/baomoi/yarn-debug.*
front-end/baomoi/yarn-error.*
# local env files
front-end/baomoi/.env*.local
# typescript
front-end/baomoi*.tsbuildinfo
# === Back end ===
back-end/.gradle
back-end/build/
back-end/!gradle/wrapper/gradle-wrapper.jar
back-end/!**/src/main/**/build/
back-end/!**/src/test/**/build/
front-end/ForPublisher/.gradle
front-end/ForPublisher/build/
front-end/ForPublisher/!gradle/wrapper/gradle-wrapper.jar
front-end/ForPublisher/!**/src/main/**/build/
front-end/ForPublisher/!**/src/test/**/build/
### STS ###
back-end/.apt_generated
back-end/.classpath
back-end/.factorypath
back-end/.project
back-end/.settings
back-end/.springBeans
back-end/.sts4-cache
back-end/bin/
back-end/!**/src/main/**/bin/
back-end/!**/src/test/**/bin/
front-end/ForPublisher/.apt_generated
front-end/ForPublisher/.classpath
front-end/ForPublisher/.factorypath
front-end/ForPublisher/.project
front-end/ForPublisher/.settings
front-end/ForPublisher/.springBeans
front-end/ForPublisher/.sts4-cache
front-end/ForPublisher/bin/
front-end/ForPublisher/!**/src/main/**/bin/
front-end/ForPublisher/!**/src/test/**/bin/
### IntelliJ IDEA ###
back-end/.idea
back-end/*.iws
back-end/*.iml
back-end/*.ipr
back-end/out/
back-end/!**/src/main/**/out/
back-end/!**/src/test/**/out/
front-end/ForPublisher/.idea
front-end/ForPublisher/*.iws
front-end/ForPublisher/*.iml
front-end/ForPublisher/*.ipr
front-end/ForPublisher/out/
front-end/ForPublisher/!**/src/main/**/out/
front-end/ForPublisher/!**/src/test/**/out/