Skip to content

Commit e784dfa

Browse files
committed
removed obsolete references to GitPod (the shortcuts don't work in codespaces)
1 parent 96ca59f commit e784dfa

File tree

4 files changed

+0
-63
lines changed

4 files changed

+0
-63
lines changed

README.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,6 @@ For the exercises, make sure to run `temporal server start-dev --ui-port 8080 --
1313
| `exercises/farewell-workflow` | [Exercise 3](exercises/farewell-workflow/README.md) |
1414
| `exercises/finale-workflow` | [Exercise 4](exercises/finale-workflow/README.md) |
1515

16-
## GitPod Environment Shortcuts
17-
18-
If you are executing the exercises in the provided GitPod environment, you
19-
can take advantage of certain aliases to aid in navigation.
20-
21-
| Command | Action |
22-
| :------ | :-------------------------------------- |
23-
| `ex1` | Change to Exercise 1 Practice Directory |
24-
| `ex1s` | Change to Exercise 1 Solution Directory |
25-
| `ex2` | Change to Exercise 2 Practice Directory |
26-
| `ex2s` | Change to Exercise 2 Solution Directory |
27-
| `ex3` | Change to Exercise 3 Practice Directory |
28-
| `ex3s` | Change to Exercise 3 Solution Directory |
29-
| `ex4` | Change to Exercise 4 Practice Directory |
30-
| `ex4s` | Change to Exercise 4 Solution Directory |
31-
3216
## Instructor-Led Demonstrations
3317

3418
| Directory Name | Description |

exercises/farewell-workflow/README.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,6 @@ you'll need to change. If you get stuck and need additional hints, or
1313
if you want to check your work, look at the completed example in the
1414
`solution` directory.
1515

16-
## GitPod Environment Shortcuts
17-
18-
If you are executing the exercises in the provided GitPod environment, you
19-
can take advantage of certain aliases to aid in navigation and execution of
20-
the code.
21-
22-
| Command | Action |
23-
| :---------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------- |
24-
| `ex3` | Change to Exercise 3 Practice Directory |
25-
| `ex3s` | Change to Exercise 3 Solution Directory |
26-
| `ex3m` | Execute the Exercise 3 Microservice. Must be within the appropriate directory for this to succeed. (either `practice` or `solution`) |
27-
| `ex3w` | Execute the Exercise 3 Worker. Must be within the appropriate directory for this to succeed. (either `practice` or `solution`) |
28-
| `ex3st YOUR_NAME` | Execute the Exercise 3 Starter, passing in your name. Must be within the appropriate directory for this to succeed. (either `practice` or `solution`) |
29-
3016
## Part A: Write an Activity Method
3117

3218
The `GreetingActivities.java` file defines an interface with the Activity method signatures.
@@ -65,12 +51,9 @@ before executing the following commands:
6551

6652
1. Compile the code using the command `mvn clean compile`
6753
2. Start the microservice by running `mvn exec:java -Dexec.mainClass="farewellworkflow.Microservice"` in a terminal
68-
1. **Note:** If you're using GitPod, you can run the shortcut `ex3m`
6954
3. In another terminal, start your Worker by running `mvn exec:java -Dexec.mainClass="farewellworkflow.GreetingWorker"`
70-
1. **Note:** If you're using GitPod, you can run the shortcut `ex3w`
7155
4. In a third terminal, execute your Workflow by running `mvn exec:java -Dexec.mainClass="farewellworkflow.Starter" -Dexec.args="Mason"`
7256
(replacing `Mason` with your own name)
73-
1. **Note:** If you're using GitPod, you can run the shortcut `ex3st Mason` (replacing `Mason` with your own name)
7457

7558
If there is time remaining, experiment with Activity failures and retries
7659
by stopping the microservice (press Ctrl-C in its terminal) and re-running

exercises/finale-workflow/README.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,6 @@ different languages, you'll need to start two Worker programs, one
1515
written in Java that will execute the Activity code and one written
1616
in Go that will execute the Workflow code.
1717

18-
## GitPod Environment Shortcuts
19-
20-
If you are executing the exercises in the provided GitPod environment, you
21-
can take advantage of certain aliases to aid in navigation and execution.
22-
23-
| Command | Action |
24-
| :---------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------- |
25-
| `ex4` | Change to Exercise 4 Practice Directory |
26-
| `ex4j` | Execute the Exercise 4 jar file Directory |
27-
| `ex4w` | Execute the Exercise 4 Worker. |
28-
| `ex4st YOUR_NAME` | Execute the Exercise 4 Starter, passing in your name. If you provide a name with spaces in it, be sure to enclose it in quotation marks. Ex: "Mason Egger" |
29-
3018
# Run the Activity Worker (implemented in Java):
3119

3220
In one terminal, run the following command:
@@ -37,8 +25,6 @@ $ java -classpath \
3725
io.temporal.training.PdfCertWorker
3826
```
3927

40-
**Note:** If you're using GitPod, you can run the shortcut `ex4j`
41-
4228
# Run the Workflow Worker (implemented in Go):
4329

4430
In another terminal, run these commands:
@@ -48,8 +34,6 @@ $ cd go
4834
$ go run worker/main.go
4935
```
5036

51-
**Note:** If you're using GitPod, you can run the shortcut `ex4w`
52-
5337
# Start the Workflow (Go)
5438

5539
In another terminal, run the following commands,
@@ -61,8 +45,6 @@ $ cd go
6145
$ go run start/main.go "Mason Egger"
6246
```
6347

64-
**Note:** If you're using GitPod, you can run the shortcut `ex4st "Mason Egger"`
65-
6648
- Once the workflow is complete, use the explorer
6749
view on the left side of the exercise environment
6850
to locate the file created by this workflow. It

exercises/hello-workflow/README.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,6 @@ comments that will guide you to where you should make changes to the code).
1212
If you need a hint or want to verify your changes, look at the complete version
1313
in the `solution` subdirectory.
1414

15-
## GitPod Environment Shortcuts
16-
17-
If you are executing the exercises in the provided GitPod environment, you
18-
can take advantage of certain aliases to aid in navigation and execution of
19-
the code.
20-
21-
| Command | Action |
22-
| :------ | :----------------------------------------------------------------------------------------------------------------------------- |
23-
| `ex1` | Change to Exercise 1 Practice Directory |
24-
| `ex1s` | Change to Exercise 1 Solution Directory |
25-
| `ex1w` | Execute the Exercise 1 Worker. Must be within the appropriate directory for this to succeed. (either `practice` or `solution`) |
26-
2715
## Part A: Review the Workflow Business Logic
2816

2917
1. Open the `HelloWorkflowWorkflow.java` and `HelloWorkflowWorkflowImpl.java` files (located in the `practice/src/main/java/helloworkflow` subdirectory) in the editor

0 commit comments

Comments
 (0)