Skip to content

Commit b138d44

Browse files
authored
Merge pull request #146 from markcocker/master
Add Node.js V8 requirements to installation
2 parents 41d781d + 25d2968 commit b138d44

File tree

2 files changed

+23
-12
lines changed

2 files changed

+23
-12
lines changed

docs/pages/cdp/cdp-Developer-deploying-Node.js-apps.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,14 @@ You can read more about the bundle manifest at [Manifest contents for a CICS bun
7979

8080
## Undeploying a bundle
8181

82-
8382
Undeploying a bundle removes it from a target CICS environment but it does not remove the bundle from zFS. The undeployment action shares the same dependencies as are required for deploying a bundle, and it uses the same z/OSMF and cics-deploy profiles. You need to know the name of the bundle in the target CICS environment. For example, you might issue the following command:
8483

85-
`zowe cics-deploy undeploy bundle --name MYBUND01 --cics-deploy-profile example`
84+
```console
85+
zowe cics-deploy undeploy bundle --name MYBUND01 --cics-deploy-profile example
86+
```
8687

8788
This command attempts to disable and discard a CICS bundle that is named MYBUND01, by using the default z/OSMF configuration and the CICS configuration defined in the example cics-deploy profile. For further information on undeploying bundle, issue the following command:
8889

89-
`zowe cics-deploy undeploy bundle --help`
90-
90+
```console
91+
zowe cics-deploy undeploy bundle --help
92+
```

docs/pages/cdp/cdp-Installation.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,30 @@ permalink: cdp-Installation.html
88
folder: cdp
99
---
1010

11-
1. Install the Zowe CLI by following one of the methods described in [Install Zowe CLI](https://zowe.github.io/docs-site/latest/user-guide/cli-installcli.html). For example:
11+
1. Install [Node.js V8.0](https://nodejs.org/en/download/) or later, and Node Package Manager (npm) V5.0 or later, that are required by Zowe CLI. To verify the versions installed:
1212
```console
13-
npm install -g zowe-cli
13+
node --version
14+
npm --version
1415
```
1516

16-
1. Install the cics-deploy plugin:
17+
2. Install [Zowe CLI](https://zowe.github.io/docs-site/latest/user-guide/cli-installcli.html). For example to install using npm:
1718
```console
18-
zowe plugins install zowe-cli-cics-deploy-plugin
19+
npm install -g zowe-cli
1920
```
20-
Or, if the cics-deploy plugin is already installed, you can update to the latest version:
21+
22+
3. Install the cics-deploy plugin:
2123
```console
22-
zowe plugins update zowe-cli-cics-deploy-plugin
24+
zowe plugins install zowe-cli-cics-deploy-plugin
2325
```
2426

25-
1. To find out the version of the plugins you have installed:
27+
4. Verify the version of the plugin that is installed:
2628
```console
2729
zowe plugins list
28-
```
30+
```
31+
32+
### Update the cics-deploy plugin
33+
34+
To update to the latest version of the plugin:
35+
```console
36+
zowe plugins update zowe-cli-cics-deploy-plugin
37+
```

0 commit comments

Comments
 (0)