-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsuite.config
122 lines (121 loc) · 4.13 KB
/
suite.config
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
.
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── docker
│ ├── README.md
│ └── apps
│ └── nyati
│ ├── docker-compose.dev.yml
│ ├── docker-compose.yml
│ ├── krakend
│ │ ├── README.md
│ │ └── krakend.json
│ └── nginx
│ ├── Dockerfile
│ ├── Dockerfile.dev
│ └── default.conf
├── graphql
│ └── nyati-app
│ └── appollo-server.yml
├── k8s
│ ├── README.md
│ ├── broker
│ │ ├── clusterIp.yaml
│ │ ├── deployment.yaml
│ │ ├── loadBalancer.yaml
│ │ └── nodePort.yaml
│ ├── ingress
│ │ └── ingress.yaml
│ └── ns
│ └── default
│ └── nyati
│ ├── combo.yaml
│ └── payment
│ ├── configMap.yaml
│ ├── db
│ │ ├── clusterIp.yaml
│ │ ├── deployment.yaml
│ │ ├── loadBalancer.yaml
│ │ └── nodePort.yaml
│ ├── secret.yaml
│ └── server
│ ├── clusterIp.yaml
│ ├── deployment.yaml
│ ├── loadBalancer.yaml
│ └── nodePort.yaml
├── microservices
│ └── payment
│ ├── Dockerfile.dev
│ ├── ecosystem.config.js
│ ├── index.js
│ ├── package.json
│ └── src
│ ├── controllers
│ │ ├── controllers.js
│ │ └── index.js
│ ├── models
│ │ ├── index.js
│ │ └── models.js
│ ├── routes
│ │ ├── index.js
│ │ └── routes.js
│ ├── services
│ │ ├── index.js
│ │ └── services.js
│ └── subscriber
│ ├── index.js
│ └── subscriber.js
├── package.json
├── production.yml
├── shared
│ ├── README.md
│ ├── broker
│ │ ├── README.md
│ │ ├── package.json
│ │ └── rabbitmq
│ │ ├── exchange.js
│ │ ├── index.js
│ │ ├── publisher.js
│ │ ├── subscriber.js
│ │ └── worker.queue.js
│ ├── config
│ │ ├── README.md
│ │ ├── config.js
│ │ ├── index.js
│ │ ├── logger.js
│ │ ├── morgan.js
│ │ └── package.json
│ ├── constants
│ │ ├── README.md
│ │ └── package.json
│ ├── errors
│ │ ├── README.md
│ │ ├── errors.handler.js
│ │ ├── index.js
│ │ └── package.json
│ ├── middlewares
│ │ ├── README.md
│ │ └── package.json
│ └── utilities
│ ├── APIError.js
│ ├── README.md
│ ├── asyncErrorHandler.js
│ ├── index.js
│ ├── package.json
│ ├── pick.js
│ └── validate.js
├── suite.config
├── suite.docker
├── suite.html
├── suite.json
├── suite.k8s
├── suite.ms
└── tests
├── README.md
└── cli
└── scripts
└── retrieveWorkspaceName.test.js
36 directories, 84 files