-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
63 lines (57 loc) · 1.14 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
# serverless.yml
service: serverless-flask
package:
exclude:
- node_modules/**
- venv/**
- tests/**
- .*/**
- app/**
- assets/**
- web-build/**
- scripts/**
- yarn.lock
- README.md
- App.tsx
- '*.cfg'
plugins:
- serverless-dotenv-plugin
- serverless-python-requirements
- serverless-wsgi
# - serverless-domain-manager
custom:
dotenv:
path: ./.env.production
include:
- SECRET_KEY
- CONNECTION_STRING
wsgi:
app: app.application
packRequirements: false
pythonRequirements:
noDeploy:
- typing
dockerizePip: non-linux
layer:
name: ${self:provider.stage}-bakelistRuntime
description: Bakelist requirements lambda layer
compatibleRuntimes:
- python3.8
allowedAccounts:
- '*'
customDomain:
domainName: nothing.something.com.au
stage: ${self:provider.stage}
createRoute53Record: false
provider:
name: aws
runtime: python3.8
stage: prod
region: us-east-1
functions:
app:
handler: wsgi_handler.handler
layers:
- {Ref: PythonRequirementsLambdaLayer}
events:
- http: ANY /graphql