Skip to content

Commit 6c68964

Browse files
author
Ryan Daugherty
committed
More changes for nano commands to scripts
1 parent 703f8d2 commit 6c68964

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ View the registry user interface in a web browser.
9595

9696
#### Step10
9797

98-
Let’s make a change to an HTML file in the cloned project. Open the /applications/hello-kenzan/index.html file in your favorite text editor, or run the command below to open it in the nano text editor. Change some text inside one of the <p> tags. For example, change “Hello from Kenzan!” to “Hello from Me!”. When you’re done in nano, press Ctrl+X to close the file, type Y to confirm the filename, and press Enter to write the changes to the file.
98+
Let’s make a change to an HTML file in the cloned project. Open the /applications/hello-kenzan/index.html file in your favorite text editor (for example, you can use nano by running the command 'nano applications/hello-kenzan/index.html' in a separate terminal). Change some text inside one of the <p> tags. For example, change “Hello from Kenzan!” to “Hello from Me!”. Save the file.
9999

100-
`nano applications/hello-kenzan/index.html`
100+
`echo ''`
101101

102102
#### Step11
103103

@@ -383,9 +383,9 @@ Spin up several instances of the puzzle service by moving the slider to the righ
383383

384384
#### Step9
385385

386-
Edit applications/puzzle/common/models/crossword.js in your favorite text editor, or edit it in nano using the command below. You'll see a commented section on lines 42-43 that indicates to uncomment a specific line. Uncomment line 43 by deleting the forward slashes. To save in nano, press Ctrl+X to close the file, type Y to confirm the filename, and press Enter to write the changes to the file.
386+
Edit applications/puzzle/common/models/crossword.js in your favorite text editor (for example, you can use nano by running the command 'nano applications/puzzle/common/models/crossword.js' in a separate terminal). You'll see a commented section on lines 42-43 that indicates to uncomment a specific line. Uncomment line 43 by deleting the forward slashes and save the file.
387387

388-
`nano applications/puzzle/common/models/crossword.js`
388+
`echo ''`
389389

390390
#### Step10
391391

part1.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ parts:
3131
- cap: View the registry user interface in a web browser.
3232
com: minikube service registry-ui
3333

34-
- cap: Let’s make a change to an HTML file in the cloned project. Open the /applications/hello-kenzan/index.html file in your favorite text editor, or run the command below to open it in the nano text editor. Change some text inside one of the <p> tags. For example, change “Hello from Kenzan!” to “Hello from Me!”. When you’re done in nano, press Ctrl+X to close the file, type Y to confirm the filename, and press Enter to write the changes to the file.
35-
com: nano applications/hello-kenzan/index.html
34+
- cap: Let’s make a change to an HTML file in the cloned project. Open the /applications/hello-kenzan/index.html file in your favorite text editor (for example, you can use nano by running the command 'nano applications/hello-kenzan/index.html' in a separate terminal). Change some text inside one of the <p> tags. For example, change “Hello from Kenzan!” to “Hello from Me!”. Save the file.
35+
com: echo ''
3636

3737
- cap: Now let’s build an image, giving it a special name that points to our local cluster registry.
3838
com: docker build -t 127.0.0.1:30400/hello-kenzan:latest -f applications/hello-kenzan/Dockerfile applications/hello-kenzan

part4.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ parts:
2828
- cap: Spin up several instances of the puzzle service by moving the slider to the right and clicking Scale. For reference, click on the Submit button, noting that the green hit does not register on the puzzle services.
2929
com: echo ''
3030

31-
- cap: Edit applications/puzzle/common/models/crossword.js in your favorite text editor, or edit it in nano using the command below. You'll see a commented section on lines 42-43 that indicates to uncomment a specific line. Uncomment line 43 by deleting the forward slashes. To save in nano, press Ctrl+X to close the file, type Y to confirm the filename, and press Enter to write the changes to the file.
32-
com: nano applications/puzzle/common/models/crossword.js
31+
- cap: Edit applications/puzzle/common/models/crossword.js in your favorite text editor (for example, you can use nano by running the command 'nano applications/puzzle/common/models/crossword.js' in a separate terminal). You'll see a commented section on lines 42-43 that indicates to uncomment a specific line. Uncomment line 43 by deleting the forward slashes and save the file.
32+
com: echo ''
3333

3434
- cap: Commit and push the change to your forked Git repo.
3535
com: echo ''

0 commit comments

Comments
 (0)