-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserverless.yml
More file actions
199 lines (188 loc) · 4.75 KB
/
Copy pathserverless.yml
File metadata and controls
199 lines (188 loc) · 4.75 KB
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
service: awesome-github
frameworkVersion: "3"
plugins:
- serverless-plugin-typescript
- serverless-offline
# - serverless-offline-scheduler
- serverless-dynamodb-local
provider:
name: aws
runtime: nodejs16.x
memorySize: 128 # optional, in MB, default is 1024
timeout: 10 # optional, in seconds, default is 6
stage: ${opt:stage, 'dev'}
region: us-east-1
iamRoleStatements:
- Effect: Allow
Action:
- "s3:*"
Resource: "*"
- Effect: Allow
Action:
- "dynamodb:*"
Resource: "*"
# or Resource: "arn:aws:dynamodb:${aws:region}:*:table/${self:provider.environment.DYNAMODB_TABLE}"
- Effect: "Allow"
Action:
- "lambda:*"
Resource:
- "*"
- Effect: "Allow"
Action:
- "ses:*"
Resource:
- "*"
- Effect: "Allow"
Action:
- "sns:*"
Resource:
- "*"
environment:
DYNAMODB_TABLE: ${self:custom.tableName}
ADMIN_EMAIL: ${self:custom.adminEmail}
API_URL: ${self:custom.apiUrl}
UI_URL: ${self:custom.uiUrl}
S3_BUCKET: ${self:custom.bucket}
SNS_TOPIC_ARN: arn:aws:sns:${aws:region}:${aws:accountId}:${self:custom.adminSnsArn}
PROJECT_ID: ${file(./config/bigquery-config.json):project_id}
CLIENT_EMAIL: ${file(./config/bigquery-config.json):client_email}
PRIVATE_KEY: ${file(./config/bigquery-config.json):private_key}
# TODO: change these below for production deploy
RECAP_SECRET: "<Your Site Secret>"
CHATGPT_URL: "<Your chat proxy IP>"
CHATGPT_KEY: "<Your chat proxy pre-sharedkey>"
functions:
userLogin:
handler: handler/userLogin.userLogin
timeout: 10
events:
- http:
path: /login
method: post
userInfo:
handler: handler/getUserInfo.getUserInfo
timeout: 10
events:
- http:
path: /getuserinfo
method: get
modifyUserInfo:
handler: handler/modifyUserInfo.modifyUserInfo
timeout: 10
events:
- http:
path: /modifyuserinfo
method: post
signup:
handler: handler/signUpUser.signUpUser
timeout: 10
events:
- http:
path: /signup
method: post
resetpass:
handler: handler/resetPassword.resetPassword
timeout: 10
events:
- http:
path: /resetpass
method: get
langrepos:
handler: handler/getReposOfLangs.getReposOfLangs
timeout: 10
events:
- http:
path: /langrepos
method: get
querytip:
handler: handler/queryTip.queryTip
timeout: 10
events:
- http:
path: /querytip
method: post
langmilestone:
handler: handler/getLangMileStone.getLangMileStone
timeout: 30
events:
- http:
path: /langmilestone
method: get
subscribeTopic:
handler: handler/subscribeTopic.subscribeTopic
events:
- http:
path: /subscribetopic
method: post
verifyEmail:
handler: handler/verifyEmail.verifyEmail
events:
- http:
path: /verifyEmail
method: get
chatgpt:
handler: handler/chatGpt.chatGpt
timeout: 10
events:
- http:
path: /chatgpt
method: post
cronSendEmail:
handler: handler/cronSendEmail.cronSendEmail
timeout: 30
events:
- http:
path: /cronSendEmail
method: get
- schedule: cron(0 0 ? * Fri *)
# - schedule: rate(1 minute) or rate(10 minutes)
custom:
serverless-offline:
host: 0.0.0.0
bucket: "awesome-github-s3"
tableName: "awesome-github-db"
adminSnsArn: "msg-admin-notifier"
# TODO: change these below for production deploy
apiUrl: "<Your API server URL>"
uiUrl: "Your UI host server URL"
adminEmail: "<Your admin email>"
stages:
- dev
# - test
# - acc
# - prod
# CloudFormation template syntax
resources:
Resources:
myS3: # friendly name, not used
Type: AWS::S3::Bucket
Properties:
BucketName: ${self:provider.environment.S3_BUCKET}
myDynamoDBTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: email
AttributeType: S
KeySchema:
- AttributeName: email
KeyType: HASH
BillingMode: PAY_PER_REQUEST
TableName: ${self:provider.environment.DYNAMODB_TABLE}
#SNS
adminMessages:
Type: AWS::SNS::Topic
Properties:
TopicName: ${self:custom.adminSnsArn}
adminSubscription:
Type: AWS::SNS::Subscription
Properties:
TopicArn: !Ref adminMessages
Protocol: email
Endpoint: ${self:custom.adminEmail}
DeliveryPolicy:
healthyRetryPolicy:
numRetries: 20
minDelayTarget: 30
maxDelayTarget: 600
backoffFunction: exponential