Skip to content

Commit 592d392

Browse files
authored
Removed Cloud Shell option (#269)
* Remove Cloud Shell option Signed-off-by: Noé Samaille <[email protected]> * Remove IBM Cloud from hill statement Signed-off-by: Noé Samaille <[email protected]> Signed-off-by: Noé Samaille <[email protected]>
1 parent 87df0b8 commit 592d392

File tree

5 files changed

+11
-46
lines changed

5 files changed

+11
-46
lines changed

docs/developer-intermediate/deploy-app/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ section that allows you to select a set of preconfigured [Starter Kits](https://
7474
tile displays the GitHub 404 page, log in and reload the page.
7575

7676

77-
- Pick one of the templates that is a good architectural fit for your application and the language and framework that you prefer to work with. For your first application, select the **Typescript Microservice**. This also works well in the Cloud Shell.
77+
- Pick one of the templates that is a good architectural fit for your application and the language and framework that you prefer to work with. For your first application, select the **Typescript Microservice**. This also works well in the web terminal.
7878

7979
Click on a <Globals name="template" /> **Tile** to create your app github repository from the
8080
template repository selected. You can also click on the **Git Icon** to browse the source template

docs/developer-intermediate/inventory-application/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ An [MVP](https://www.ibm.com/garage/method/practices/think/practice_minimum_viab
1616

1717
- **What**: A secure web application that enables easy access to list of product [SKU](https://en.wikipedia.org/wiki/Stock_keeping_unit) inventory levels and inventory locations
1818

19-
- **Wow**: Make the system appealing and easy to use. Deliver it hosted on the IBM Cloud platform. Develop it quickly as a [minimum viable product](https://www.ibm.com/garage/method/practices/think/practice_minimum_viable_product/). Use the latest managed container runtimes and DevOps best practices to enable post MVP feature improvements. Simulate a release to a _Test_ environment.
19+
- **Wow**: Make the system appealing and easy to use. Develop it quickly as a [minimum viable product](https://www.ibm.com/garage/method/practices/think/practice_minimum_viable_product/). Use the latest managed container runtimes and DevOps best practices to enable post MVP feature improvements. Simulate a release to a _Test_ environment.
2020

2121
## Architecture
2222

docs/developer-intermediate/inventory-bff/index.md

Lines changed: 7 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The Inventory solution will use [GraphQL](https://graphql.org/) for its BFF laye
3434

3535
- In the OpenShift web console, click on email address top right, click on **Copy login command** and get the OpenShift login command, which includes a token.
3636

37-
- Click on **Display Token**, copy the Login with the token. oc login command will log you in. Run the login command in the cloud shell terminal:
37+
- Click on **Display Token**, copy the Login with the token. oc login command will log you in. Run the login command in your terminal:
3838

3939
```bash
4040
$ oc login --token=qvARHflZDlOYfjJZRJUEs53Yfy4F8aa6_L3ezoagQFM --server=https://c103-e.us-south.containers.cloud.ibm.com:30979
@@ -157,21 +157,10 @@ by a component and provide a good way to load the modules that will be injected
157157
npm start
158158
```
159159
160-
- Access the running service. This service runs on port `3000`.
161-
162-
=== "Cloud Shell"
163-
- To view the running app click on the **Eye Icon** on the top right and select the port `3000` this will open a browser tab and display the running app on that port.
164-
165-
![View App](../../images/inventory-service/viewapp.png)
160+
- Access the running service. This service runs on port `3000`:
166161
167162
=== "Gitpod"
168-
- Once you run the application,gitpod gives the option to make the port "Public".Once you make the port Public, it gives you the option to "Open Preview" or "Open Browser".
169-
170-
![View App](../../images/inventory-service/gitpod01.png)
171-
172-
=== "Code Ready Workspaces"
173-
- Click on open link
174-
![CRW Open Link](../../images/inventory-service/crwopenlink.png)
163+
- Once you run the application, Gitpod gives the option to make the port **Public**, in the bottom-right corner.Once you make the port Public, it gives you the option to **Open Preview** or **Open Browser**.
175164
176165
=== "Desktop/Laptop"
177166
- Open a browser to `http://localhost:3000/api-docs` to see the swagger page
@@ -381,21 +370,10 @@ into javascript and to put the business logic in a separate service component.
381370
npm start
382371
```
383372
384-
- Access the running service. This service runs on port `3000`.
385-
386-
=== "Cloud Shell"
387-
- To view the running app click on the **Eye Icon** on the top right and select the port `3000` this will open a browser tab and display the running app on that port.
388-
389-
![View App](../../images/inventory-service/viewapp.png)
373+
- Access the running service. This service runs on port `3000`:
390374
391375
=== "Gitpod"
392-
- Once you run the application,gitpod gives the option to make the port "Public".Once you make the port Public, it gives you the option to "Open Preview" or "Open Browser".
393-
394-
![View App](../../images/inventory-service/gitpod01.png)
395-
396-
=== "Code Ready Workspaces"
397-
- Click on open link
398-
![CRW Open Link](../../images/inventory-service/crwopenlink.png)
376+
- Once you run the application, Gitpod gives the option to make the port **Public**, in the bottom-right corner.Once you make the port Public, it gives you the option to **Open Preview** or **Open Browser**.
399377
400378
=== "Desktop/Laptop"
401379
- Open a browser to `http://localhost:3000/api-docs` to see the swagger page
@@ -483,25 +461,12 @@ for GraphQL.
483461
npm start
484462
```
485463
- Verify that the that the resolver is available using the Graph QL browser provided by the template:
486-
- Open GraphQL Playground: `http://localhost:3000/graphql`
487-
- Run the query `query { stockItems { name } }`
488-
489-
=== "Cloud Shell"
490-
- To view the running app click on the **Eye Icon** on the top right and select the port `3000` this will open a browser tab and display the running app on that port.
491-
492-
![View App](../../images/inventory-service/viewapp.png)
493464
494465
=== "Gitpod"
495-
- Once you run the application,gitpod gives the option to make the port "Public".Once you make the port Public, it gives you the option to "Open Preview" or "Open Browser".
496-
497-
![View App](../../images/inventory-service/gitpod01.png)
498-
499-
=== "Code Ready Workspaces"
500-
- Click on open link
501-
![CRW Open Link](../../images/inventory-service/crwopenlink.png)
466+
- Once you run the application, Gitpod gives the option to make the port **Public**, in the bottom-right corner.Once you make the port Public, it gives you the option to **Open Preview** or **Open Browser**.
502467
503468
=== "Desktop/Laptop"
504-
- Open GraphQL Playground: `http://localhost:3000/graphql`
469+
- In your Browser, open GraphQL playground: `http://localhost:3000/graphql`
505470
- Run the query `query { stockItems { name } }`
506471
507472
- Push the changes we've made to the repository:

docs/developer-intermediate/inventory-service/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
![OpenShift Login](../../images/common/LoginCommand.png)
3838

39-
- Click on **Display Token**, copy the Login with the token. oc login command will log you in. Run the login command in the cloud shell terminal:
39+
- Click on **Display Token**, copy the Login with the token. oc login command will log you in. Run the login command in your terminal:
4040

4141
```bash
4242
$ oc login --token=qvARHflZDlOYfjJZRJUEs53Yfy4F8aa6_L3ezoagQFM --server=https://c103-e.us-south.containers.cloud.ibm.com:30979

docs/developer-intermediate/inventory-ui/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
![OpenShift Login](../../images/common/LoginCommand.png)
3232

33-
- Click on **Display Token**, copy the Login with the token. oc login command will log you in. Run the login command in the cloud shell terminal:
33+
- Click on **Display Token**, copy the Login with the token. oc login command will log you in. Run the login command in your terminal:
3434

3535
```bash
3636
$ oc login --token=qvARHflZDlOYfjJZRJUEs53Yfy4F8aa6_L3ezoagQFM --server=https://c103-e.us-south.containers.cloud.ibm.com:30979

0 commit comments

Comments
 (0)