mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
13 lines
196 B
YAML
13 lines
196 B
YAML
service: aws-nodejs # NOTE: update this with your service name
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs6.10
|
|
|
|
functions:
|
|
hello:
|
|
handler: handler.hello
|
|
|
|
plugins:
|
|
- serverless-plugin-greeter
|