20 lines
320 B
YAML
20 lines
320 B
YAML
service:
|
|
name: promessegoverno
|
|
app: promessegoverno-app
|
|
org: hamcha
|
|
|
|
# Add the serverless-webpack plugin
|
|
plugins:
|
|
- serverless-webpack
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs10.x
|
|
|
|
functions:
|
|
promiseList:
|
|
handler: handler.promiseList
|
|
events:
|
|
- http:
|
|
method: get
|
|
path: promiseList
|