Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.

Commit a22f889

Browse files
committed
update to templates
1 parent 9686477 commit a22f889

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# blueprint-hello-world
1+
# template-hello-world
22

33
### Overview
4-
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`
4+
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`
55

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

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

1010
### Available Languages
11-
This blueprint is available in node.js, php, python & swift.
11+
This template is available in node.js, php, python & swift.

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ include 'whisktests'; project(':whisktests').projectDir = new File(owDirectory,
88

99
include 'tests'
1010

11-
rootProject.name = 'blueprint-hello-world'
11+
rootProject.name = 'template-hello-world'
1212

1313
gradle.ext.scala = [
1414
version: '2.11.8',

tests/src/test/scala/blueprints/HelloTests.scala renamed to tests/src/test/scala/templates/HelloTests.scala

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ class HelloTests extends TestHelpers
4040
val pythonfolder = "../runtimes/python/actions";
4141
val swiftfolder = "../runtimes/swift/actions";
4242

43-
behavior of "Hello World Blueprint"
43+
behavior of "Hello World Template"
4444

4545
/**
46-
* Test the nodejs "hello world" blueprint
46+
* Test the nodejs "hello world" template
4747
*/
4848
it should "invoke helloworld.js and get the result" in withAssetCleaner(wskprops) { (wp, assetHelper) =>
4949
val name = "helloNode"
@@ -68,7 +68,7 @@ class HelloTests extends TestHelpers
6868
}
6969
}
7070
/**
71-
* Test the php "hello world" blueprint
71+
* Test the php "hello world" template
7272
*/
7373
it should "invoke helloworld.php and get the result" in withAssetCleaner(wskprops) { (wp, assetHelper) =>
7474
val name = "helloPhp"
@@ -93,7 +93,7 @@ class HelloTests extends TestHelpers
9393
}
9494
}
9595
/**
96-
* Test the python "hello world" blueprint
96+
* Test the python "hello world" template
9797
*/
9898
it should "invoke helloworld.py and get the result" in withAssetCleaner(wskprops) { (wp, assetHelper) =>
9999
val name = "helloPython"
@@ -118,7 +118,7 @@ class HelloTests extends TestHelpers
118118
}
119119
}
120120
/**
121-
* Test the swift "hello world" blueprint
121+
* Test the swift "hello world" template
122122
*/
123123
it should "invoke helloworld.swift and get the result" in withAssetCleaner(wskprops) { (wp, assetHelper) =>
124124
val name = "helloSwift"

tools/travis/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@ cd $DEPLOYDIR/packages
5353
source $DEPLOYDIR/packages/installCatalog.sh $AUTH_KEY $EDGE_HOST $WSK_CLI
5454

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

0 commit comments

Comments
 (0)