You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/getting-started/ibmcloud.md
+12-24
Original file line number
Diff line number
Diff line change
@@ -7,38 +7,26 @@ redirect_from:
7
7
- /docs/platforms/bluemix
8
8
---
9
9
10
-
Node-RED is available on the IBM Cloud platform as one of the [boilerplate applications](#boilerplate-application)
10
+
Node-RED is available on the IBM Cloud platform as one of the [Starter Kits applications](#starter-kit-application)
11
11
in the catalog.
12
12
13
13
We also provide a '[Deploy To IBM Cloud](#deploy-to-ibm-cloud)' enabled repository.
14
14
15
15
---
16
16
17
-
### Boilerplate application
17
+
### Starter Kit application
18
18
19
-
1. Log in or sign-up for an account at [bluemix.net](http://bluemix.net)
19
+
1. Log in or sign-up for an account at [cloud.ibm.com](https://cloud.ibm.com)
20
20
21
-
2. Navigate to the catalog and [search for 'Node-RED'](https://console.ng.bluemix.net/catalog?search=Node-RED)
21
+
2. Navigate to the catalog and [search for 'Node-RED'](https://cloud.ibm.com/catalog?search=node-red).
22
+
This will present you with the **Node-RED Starter**. This gives you a Node-RED instance running as a Cloud Foundry
23
+
application. It also provides a Cloudant database instance
24
+
and a collection of nodes that make it easy to access various IBM Cloud services.
22
25
23
-
3. This will present you with two options:
24
-
25
-
1.**Node-RED Starter** - a vanilla Node-RED instance
26
-
27
-
2.**Internet of Things Platform Starter** - this gives you everything you need
28
-
to start quickly using Node-RED with the Watson IoT Platform, including
29
-
some default flows to show how things work
30
-
31
-
In both cases you will get:
32
-
33
-
- a Cloudant database instance to store your flow configuration
34
-
- a collection of nodes that make it easy to access various Bluemix services, including
35
-
both the Watson IoT platform and the Watson Cognitive services
36
-
37
-
4. Click the starter application you want to use, give it a name and click create.
26
+
3. Click the starter application you want to use, give it a name and click create.
38
27
39
28
A couple of minutes later, you'll be able to access your instance of Node-RED at `https://<yourAppName>.mybluemix.net`
40
29
41
-
42
30
#### Customising your Node-RED application
43
31
44
32
To start customising your instance of Node-RED, you can either download the application locally or you can enable the Continuous Delivery integration option via your application's IBM Cloud dashboard page. That will create a git repository on either GitHub or IBM DevOps services, from where you can customize your Node-RED, save the changes and automatically update the application in IBM Cloud.
@@ -69,15 +57,15 @@ add the required node modules in the `dependencies` section. The format is:
69
57
The application's package.json is setup to grab the latest stable release of Node-RED.
70
58
To trigger an upgrade following a new release being made available:
71
59
72
-
1.Per default [IBM Cloud maintains a cache directory](https://console.bluemix.net/docs/runtimes/nodejs/configurationOptions.html#cache_behavior) per node application, to store resolved dependencies so they are not downloaded and installed every time. For updates this cache should be disabled. Set the NODE_MODULES_CACHE environment variable to false. You can either do this on your application's IBM Cloud console page (Runtime -> Environment Variables), or by using the cf command-line:
60
+
1.Applications running in the Cloud Foundry space of IBM Cloud maintain a cache directory per node application, to store resolved dependencies so they are not downloaded and installed every time the application is restaged. To update the dependencies, including the version of node-RED, this cache must be disabled. Set the NODE_MODULES_CACHE environment variable to false. You can either do this on your application's IBM Cloud console page (Runtime -> Environment Variables), or by using the cf command-line:
2. Trigger a restage of your application. This cannot be done using the IBM Cloud console, so the cf command-line should be used:
77
65
78
66
cf restage [APPLICATION_NAME]
79
67
80
-
3. If you are upgrade to Node-RED 0.20 or later, you **must** ensure your application is running on Node.js 8 or later. To do that, edit you application `package.json` file - see below for how to edit the file. Update the `engines` property to `8.x` if it is not currently set to that.
68
+
3. If you are upgrade to Node-RED 0.20 or later, you **must** ensure your application is running on Node.js 10 or later. To do that, edit you application `package.json` file - see below for how to edit the file. Update the `engines` property to `10.x` if it is not currently set to that.
81
69
82
70
In order to edit the file, you must enable the Continuous Delivery integration
83
71
option via your application's IBM Cloud dashboard page. That will create a git repository
@@ -97,13 +85,13 @@ root path, delete the `httpStatic` and `httpAdminRoot` entries in the `bluemix-s
97
85
98
86
### Deploy To IBM Cloud
99
87
100
-
The [Deploy To Bluemix enabled repository](https://github.com/node-red/node-red-bluemix-starter)
88
+
The [Deploy To IBM Cloud enabled repository](https://github.com/node-red/node-red-bluemix-starter)
101
89
lets you create your own customised Node-RED application that can then
102
90
be deployed to IBM Cloud with a couple clicks.
103
91
104
92
You can try it out now by clicking here:
105
93
106
-
[](https://bluemix.net/deploy?repository=https://github.com/node-red/node-red-bluemix-starter.git)
94
+
[](https://bluemix.net/deploy?repository=https://github.com/ibmets/node-red-bluemix-starter.git)
107
95
108
96
When you click the button, you are taken to IBM Cloud where you get a pick a name
109
97
for your application at which point the platform takes over, grabs the code from
0 commit comments