hope-it-stays-here/serverless.yml

16 lines
258 B
YAML
Raw Normal View History

2018-11-12 20:13:45 +00:00
service: my-service # NOTE: update this with your service name
provider:
name: aws
runtime: nodejs8.10
functions:
hello:
handler: handler.hello
events:
- http:
path: hello
method: get
plugins:
- serverless-offline