Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# blueprint-hello-world
# template-hello-world

### Overview
You can use this blueprint to deploy some IBM Cloud Functions assets for you. The assets created by this blueprint are described in the manifest.yaml file, which can be found at `blueprint-hello-world/runtimes/your_language_choice/manifest.yaml`
You can use this template to deploy some IBM Cloud Functions assets for you. The assets created by this template are described in the manifest.yaml file, which can be found at `template-hello-world/runtimes/your_language_choice/manifest.yaml`

The only assets described by this hello world blueprint are a single action, named helloworld, which takes as input a message parameter.
The only assets described by this hello world template are a single action, named helloworld, which takes as input a message parameter.

You can use the wskdeploy tool to deploy this asset yourself using the manifest and available code.

### Available Languages
This blueprint is available in node.js, php, python & swift.
This template is available in node.js, php, python & swift.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include 'whisktests'; project(':whisktests').projectDir = new File(owDirectory,

include 'tests'

rootProject.name = 'blueprint-hello-world'
rootProject.name = 'template-hello-world'

gradle.ext.scala = [
version: '2.11.8',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ class HelloTests extends TestHelpers
val pythonfolder = "../runtimes/python/actions";
val swiftfolder = "../runtimes/swift/actions";

behavior of "Hello World Blueprint"
behavior of "Hello World Template"

/**
* Test the nodejs "hello world" blueprint
* Test the nodejs "hello world" template
*/
it should "invoke helloworld.js and get the result" in withAssetCleaner(wskprops) { (wp, assetHelper) =>
val name = "helloNode"
Expand All @@ -68,7 +68,7 @@ class HelloTests extends TestHelpers
}
}
/**
* Test the php "hello world" blueprint
* Test the php "hello world" template
*/
it should "invoke helloworld.php and get the result" in withAssetCleaner(wskprops) { (wp, assetHelper) =>
val name = "helloPhp"
Expand All @@ -93,7 +93,7 @@ class HelloTests extends TestHelpers
}
}
/**
* Test the python "hello world" blueprint
* Test the python "hello world" template
*/
it should "invoke helloworld.py and get the result" in withAssetCleaner(wskprops) { (wp, assetHelper) =>
val name = "helloPython"
Expand All @@ -118,7 +118,7 @@ class HelloTests extends TestHelpers
}
}
/**
* Test the swift "hello world" blueprint
* Test the swift "hello world" template
*/
it should "invoke helloworld.swift and get the result" in withAssetCleaner(wskprops) { (wp, assetHelper) =>
val name = "helloSwift"
Expand Down
2 changes: 1 addition & 1 deletion tools/travis/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ cd $DEPLOYDIR/packages
source $DEPLOYDIR/packages/installCatalog.sh $AUTH_KEY $EDGE_HOST $WSK_CLI

# Test
cd $ROOTDIR/blueprint-hello-world
cd $ROOTDIR/template-hello-world
./gradlew :tests:test