-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathserverless.yml
62 lines (57 loc) · 1.04 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
org: tyvdh
app: applecardforynab
service: applecardforynab
plugins:
- serverless-webpack
- serverless-offline
package:
individually: true
excludeDevDependencies: true
custom:
webpack:
webpackConfig: ./webpack.config.js
includeModules:
forceExclude:
- aws-sdk
serverless-offline:
useChildProcesses: true
httpPort: 4000
provider:
name: aws
runtime: nodejs10.x
region: us-east-1
environment: ${file(env.yml)}
tracing:
lambda: true
functions:
parse:
handler: handler.parse
timeout: 10
events:
- http:
path: parse
method: POST
access:
handler: handler.access
timeout: 5
events:
- http:
path: access
method: POST
cors: true
refresh:
handler: handler.refresh
timeout: 5
events:
- http:
path: refresh
method: POST
cors: true
update:
handler: handler.update
timeout: 5
events:
- http:
path: update
method: POST
cors: true