Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo inner loop _index.md #46

Merged
merged 1 commit into from
May 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/3-inner-loop/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ odo init
- You can then opt-into telemetry **(Y/n)**
- A matching Quarkus DevFile is found in the odo repository. Choose **Y** to download
- You can select a container in which odo will be started. Hit **Enter** (None)
- As componenten name keep the suggestion. Hit **Enter**
- As component name keep the suggestion. Hit **Enter**

**odo** is now intialized for your app. Let's deploy the app to openshift in odo dev mode

Expand All @@ -134,7 +134,7 @@ To test the app in the Quarkus App tab:
Your app should be displayed as a simple web page. In the `RESTEasy JAX-RS` section click the `@Path` endpoint `/hello` to see the result.

Now for the fun part:
Using `odo` you can dynamically change your code and push it again without the need t o build a new container image! No dev magic involved:
Using `odo` you can dynamically change your code and push it again without the need to build a new container image! No dev magic involved:

- In your DevWorkspace on the left, expand the file tree to open file `src/main/java/org/acme/GreetingRessource.java` and change the string "Hello RESTEasy" to "Hello Workshop" (DevSpaces auto saves every edit directly. No need to save the file manually.)

Expand Down