-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathaws-deployment-sample.yml
More file actions
45 lines (41 loc) · 1.03 KB
/
aws-deployment-sample.yml
File metadata and controls
45 lines (41 loc) · 1.03 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
service: <service-name>
frameworkVersion: '4'
provider:
name: aws
runtime: nodejs20.x
stage: prod
region: <aws-region>
timeout: 20
functions:
HandlerFunction:
handler: build/main/index.handler
events:
- httpApi:
path: /
method: ANY
- httpApi:
path: /{proxy+}
method: ANY
package:
individually: false
excludeDevDependencies: false
patterns:
- node_modules/**
- '!docs/**'
- '!README.md'
- '!src/unit-tests/**'
- '!ctExtension.zip'
- '!node_modules/@ava/**'
- '!node_modules/ava/**'
- '!node_modules/chai/**'
- '!node_modules/chai-as-promised/**'
- '!node_modules/chokidar/**'
- '!node_modules/dir-archiver/**'
- '!node_modules/pinkie/**'
- '!node_modules/pinkie-promise/**'
- '!node_modules/run-func/**'
- '!node_modules/serverless/**'
- '!node_modules/validate-npm-package-license/**'
- '!node_modules/validate-npm-package-name/**'
- '!node_modules/vscode-uri/**'
- '!node_modules/zip-stream/**'