blob: 93f3cd207c8cab41156c3a4a61ec2f6e43248b9e [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
# license agreements; and to You under the Apache License, Version 2.0.
project:
name: helloworld
inputs:
FIRST_NAME:
type: string
description: "your first name"
required: true
value: Amy
CITY_NAME:
type: string
description: "The city name"
required: true
value: Paris
packages:
helloworldapp:
actions:
hello:
inputs:
name:
type: string
description: "your first name"
required: true
value: $FIRST_NAME
place:
type: string
description: "The city name"
required: true
value: $CITY_NAME
code: |
function main(params) {
return {payload: 'Hello, ' + params.name + ' from ' + params.place};
}
runtime: nodejs:6