Skip to content

Commit 771ff85

Browse files
authored
Merge pull request #49 from ShilpThapak/patch-1
Update README.md to include npm install
2 parents ec4a15b + 15bb445 commit 771ff85

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

exercises/hello-workflow/README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,17 @@ You'll need three terminal windows for this exercise.
2525
1. Open the `worker.ts` file (located in the `practice/src` subdirectory) in the editor
2626
2. Change the task queue name to `greeting-tasks`
2727
3. Save your changes
28-
4. Repeat this process in the `client.ts` file
28+
4. Repeat this process in the `client.ts` file
2929

30-
## Part C: Start the Worker
30+
## Part C: Install Dependencies
31+
32+
1. Open a terminal window in your environment and navigate to the `exercises/hello-workflow/practice` subdirectory.
33+
2. Run the following command to install the required dependencies:
34+
```command
35+
npm install
36+
```
37+
38+
## Part D: Start the Worker
3139

3240
1. Go to a terminal window in the environment and make sure you are in the `exercises/hello-workflow/practice/src` subdirectory for this exercise
3341
2. Run the following command to start the Worker:
@@ -36,7 +44,7 @@ You'll need three terminal windows for this exercise.
3644
npm run start.watch
3745
```
3846

39-
## Part D: Start the Workflow from the Command Line
47+
## Part E: Start the Workflow from the Command Line
4048

4149
1. Go to another terminal window in the environment and make sure you are in the `exercises/hello-workflow/practice/src` subdirectory.
4250
2. Run the following command, replacing `Donna` with your own name. Be sure to retain the same quoting shown here when you run the command:
@@ -76,4 +84,4 @@ This command shows you a lot of information. We will cover this output later in
7684

7785
It is also possible, and often more convenient, to view this information using the Web UI. You will have a chance to do this in the next exercise.
7886

79-
### This is the end of the exercise.
87+
### This is the end of the exercise.

0 commit comments

Comments
 (0)