mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
17 lines
315 B
YAML
17 lines
315 B
YAML
# Hello World for Apache OpenWhisk
|
|
service: hello-world # Service Name
|
|
|
|
provider:
|
|
name: openwhisk
|
|
runtime: python
|
|
|
|
functions:
|
|
helloWorld:
|
|
handler: handler.index
|
|
events:
|
|
- http: GET hello
|
|
|
|
# remember to run npm install to download the provider plugin.
|
|
plugins:
|
|
- serverless-openwhisk
|