Skip to content

Commit 02f83f3

Browse files
committed
Rename Deploying your first Node.js app
Signed-off-by: Mark Cocker <[email protected]>
1 parent 895e5c8 commit 02f83f3

8 files changed

+12
-12
lines changed

docs/_data/sidebars/cdp_sidebar.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ entries:
3535
- title: Provisioning a CICS region
3636
url: cdp-Provisioning-a-CICS-region.html
3737
output: web
38-
- title: Deploying your first Node.js app
39-
url: cdp-Deploying-your-first-nodejs-app.html
38+
- title: Deploying a Node.js application
39+
url: cdp-Deploying-a-nodejs-application.html
4040
output: web
4141
- title: Deploying a CICS policy
4242
url: cdp-Deploying-a-CICS-policy.html

docs/pages/cdp/cdp-Creating-Zowe-CLI-profiles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ For help on using the options:
104104
zowe profiles create cics-deploy-profile --help
105105
```
106106

107-
To test the cics-deploy profile, follow the steps in [Deploying your first Node.js app](cdp-Deploying-your-first-nodejs-app).
107+
To test the cics-deploy profile, follow the steps in [Deploying a Node.js application](cdp-Deploying-a-nodejs-application).
108108

109109
### Create a CICS profile
110110

docs/pages/cdp/cdp-Deploying-using-individual-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ folder: cdp
99
toc: true
1010
---
1111

12-
The `zowe cics-deploy push bundle` command performs a set of actions to deploy applications to CICS, as can be seen in [Deploying your first Node.js app](cdp-Deploying-your-first-nodejs-app). The main actions include:
12+
The `zowe cics-deploy push bundle` command performs a set of actions to deploy applications to CICS, as can be seen in [Deploying a Node.js application](cdp-Deploying-a-nodejs-application). The main actions include:
1313

1414
* undeploy the old version of the CICS bundle in CICS
1515
* upload the new version of the CICS bundle to z/OS

docs/pages/cdp/cdp-Deploying-your-first-nodejs-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: Deploying your first Node.js app
2+
title: Deploying a Node.js application
33
tags: [tutorial]
44
keywords:
5-
summary: "The following steps take you through deploying your first Node.js application to CICS using the Express Application Generator."
5+
summary: "The following steps take you through creating a Node.js application using the Express Application Generator then deploying it to CICS."
66
sidebar: cdp_sidebar
7-
permalink: cdp-Deploying-your-first-nodejs-app.html
7+
permalink: cdp-Deploying-a-nodejs-application.html
88
folder: cdp
99
toc: true
1010
---

docs/pages/cdp/cdp-Home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ folder: cdp
1010

1111
The cics-deploy plug-in provides a CICS deployment workflow for developers and CI/CD automation pipelines similar to that experienced when deploying applications to cloud environments.
1212

13-
Before you start, and especially if you are not familiar with the world of z/OS, Zowe, and CICS, it's a good idea to read about some of the key concepts, which include [Zowe](cdp-zowe-and-cli), [Zowe CLI profiles](cdp-zowe-profiles) and [CICS bundles](cdp-cics-bundles). If you're keen to get going quickly, you can jump right in and follow along with our tutorial on [Deploying your first Node.js app](cdp-Deploying-your-first-nodejs-app).
13+
Before you start, and especially if you are not familiar with the world of z/OS, Zowe, and CICS, it's a good idea to read about some of the key concepts, which include [Zowe](cdp-zowe-and-cli), [Zowe CLI profiles](cdp-zowe-profiles) and [CICS bundles](cdp-cics-bundles). If you're keen to get going quickly, you can jump right in and follow along with our tutorial on [Deploying a Node.js application](cdp-Deploying-a-nodejs-application).
1414

1515
When everything is [installed](cdp-Installing) and you have [created the Zowe CLI profiles](cdp-Creating-Zowe-CLI-profiles), you can deploy an application from your workstation to CICS in two steps:
1616

docs/pages/cdp/cdp-Preparing-a-zOS-PT-image.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Run the following commands on your workstation.
9393

9494
#### Results
9595

96-
The image is now ready for developers to provision CICS regions and deploy their Node.js applications using [Deploying your first Node.js app](cdp-Deploying-your-first-nodejs-app). The image source can be stored with other images and shared using a source code management system.
96+
The image is now ready for developers to provision CICS regions and deploy their Node.js applications using [Deploying a Node.js application](cdp-Deploying-a-nodejs-application). The image source can be stored with other images and shared using a source code management system.
9797

9898
### Prepare a z/OS PT image for CICS including an application
9999

@@ -107,7 +107,7 @@ Run the following commands on your workstation.
107107

108108
2. Create Zowe CLI profiles for at least z/OSMF and SSH following the steps in [Creating Zowe CLI profiles](cdp-Creating-Zowe-CLI-profiles).
109109

110-
3. Prepare your environment and Node.js application by following steps 1 to 4 in tutorial [Deploying your first Node.js app](cdp-Deploying-your-first-nodejs-app).
110+
3. Prepare your environment and Node.js application by following steps 1 to 4 in tutorial [Deploying a Node.js application](cdp-Deploying-a-nodejs-application).
111111

112112
4. Setup environment variables for the name of your image, and paths for the image source on the workstation and z/OS.
113113

docs/pages/cdp/cdp-Provisioning-a-CICS-region.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Before you can provision a CICS region, a z/OS PT image needs to be created and
8888

8989
#### Results
9090

91-
You are now ready to deploy applications to the provisioned CICS region. You can try this out by following the steps in [Deploying your first Node.js app](cdp-Deploying-your-first-nodejs-app). During deployment, the CICS bundle will be copied into the `bundles/` directory, and output files will be written into a sub-directory of `workdir/`.
91+
You are now ready to deploy applications to the provisioned CICS region. You can try this out by following the steps in [Deploying a Node.js application](cdp-Deploying-a-nodejs-application). During deployment, the CICS bundle will be copied into the `bundles/` directory, and output files will be written into a sub-directory of `workdir/`.
9292

9393
### Stop your CICS region
9494

docs/pages/cdp/cdp-Tutorials-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Firstly, you will need a CICS region. The z/OS Provisioning Toolkit enables you
1717

1818
Next deploy an application:
1919

20-
* [Deploying your first Node.js app](cdp-Deploying-your-first-nodejs-app) - create a Node.js application using the Express Application Generator and deploy it.
20+
* [Deploying a Node.js application](cdp-Deploying-a-nodejs-application) - create a Node.js application using the Express Application Generator and deploy it.
2121

2222
* [Deploying a CICS policy](cdp-Deploying-a-CICS-policy) - download a sample CICS bundle containing a policy and deploy it.
2323

0 commit comments

Comments
 (0)