-
Notifications
You must be signed in to change notification settings - Fork 0
/
serverless.yml
231 lines (210 loc) Β· 5.16 KB
/
serverless.yml
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
service: bamboo-apiv3
useDotenv: true
frameworkVersion: "3"
provider:
name: aws
runtime: nodejs14.x
lambdaHashingVersion: 20201221
region: ap-northeast-2
stage: apiV3
resources:
Resources:
GatewayResponseDefault4XX:
Type: "AWS::ApiGateway::GatewayResponse"
Properties:
ResponseParameters:
gatewayresponse.header.Access-Control-Allow-Origin: "'*'"
gatewayresponse.header.Access-Control-Allow-Headers: "'*'"
ResponseType: DEFAULT_4XX
RestApiId:
Ref: "ApiGatewayRestApi"
GatewayResponseDefault5XX:
Type: "AWS::ApiGateway::GatewayResponse"
Properties:
ResponseParameters:
gatewayresponse.header.Access-Control-Allow-Origin: "'*'"
gatewayresponse.header.Access-Control-Allow-Headers: "'*'"
ResponseType: DEFAULT_5XX
RestApiId:
Ref: "ApiGatewayRestApi"
functions:
createAlgorithm:
handler: src/handler.writeAlgorithm
events:
- http:
path: algorithm
method: post
cors: true
getKindOfAlgorithmCount:
handler: src/handler.getAlgorithmCountAtAll
events:
- http:
path: algorithm/count
method: get
cors: true
getAlgorithmRules:
handler: src/handler.getAlgorithmRules
events:
- http:
path: algorithm/rule
method: get
cors: true
getAlgorithmRulesForWeb:
handler: src/handler.getAlgorithmRulesForWeb
events:
- http:
path: algorithm/rule/web
method: get
cors: true
getAlgorithmByUser:
handler: src/handler.getAlgorithmByUser
events:
- http:
path: algorithm/{idx}
method: get
cors: true
getAlgorithmByAdmin:
handler: src/handler.getAlgorithmByAdmin
events:
- http:
path: algorithm/{idx}/admin
method: get
cors: true
getAlgorithmListByAdmin:
handler: src/handler.getAlgorithmListByAdmin
events:
- http:
path: algorithm/list/{type}/admin
method: get
cors: true
getAlgorithmListByUser:
handler: src/handler.getAlgorithmListByUser
events:
- http:
path: algorithm/list/{type}
method: get
cors: true
changeStatusAlgorithm:
handler: src/handler.setAlgorithmStatus
events:
- http:
path: algorithm/status/{idx}
method: patch
cors: true
algorithmDelete:
handler: src/handler.deleteAlgorithm
events:
- http:
path: algorithm/information/{idx}
method: delete
cors: true
modifyAlgorithm:
handler: src/handler.modifyAlgorithmContent
events:
- http:
path: algorithm/content/{idx}
method: patch
cors: true
verifyGet:
handler: src/handler.getVerifyQuestion
events:
- http:
path: verify
method: get
cors: true
verifyAdd:
handler: src/handler.addVerifyQuestion
events:
- http:
path: verify
method: post
cors: true
mailSend:
handler: src/handler.mailSend
events:
- http:
path: authentication/mail
method: post
cors: true
mailAuth:
handler: src/handler.mailAuth
events:
- http:
path: authentication/mail
method: patch
cors: true
signUp:
handler: src/handler.signUp
events:
- http:
path: signup
method: post
cors: true
signIn:
handler: src/handler.login
events:
- http:
path: login
method: post
cors: true
getTokenByRefreshToken:
handler: src/handler.getTokenByRefreshToken
events:
- http:
path: token
method: post
cors: true
addLeaf:
handler: src/handler.addLeaf
events:
- http:
path: leaf
method: post
cors: true
removeLeaf:
handler: src/handler.removeLeaf
events:
- http:
path: leaf
method: delete
cors: true
addComment:
handler: src/handler.addComment
events:
- http:
path: comment
method: post
cors: true
deleteComment:
handler: src/handler.deleteComment
events:
- http:
path: comment
method: delete
cors: true
modifyProfile:
handler: src/handler.modifyProfile
events:
- http:
path: profile
method: patch
cors: true
plugins:
- serverless-plugin-typescript
- serverless-dotenv-plugin
- serverless-offline
custom:
dotenv:
required:
env:
- DISCORD_ACCEPTED_WEBHOOK
- DISCORD_RECJECTED_WEBHOOK
- DISCORD_REPORT_WEBHOOK
- DISCORD_MANAGEMENT_WEBHOOK
- DISCORD_ABOUT_DELETE_WEBHOOK
- ADMIN_PASSWORD
- JWT_SECRET
- MAIL_ID
- MAIL_PW
- APPLE_AUD
- DB_URL