Skip to content

Commit

Permalink
more tutorial fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
GSmithApps committed Aug 24, 2024
1 parent 1fd0910 commit a2a9d55
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docs/tutorials/python/geocoding-app/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,10 +285,10 @@ This returns a Worker, which you use to
call the `.run()` method. This is what makes the Worker run
and start listening for work on the Task Queue. You will run it now.

- Open a new terminal (keep the service running
in a different terminal).
- Navigate to the project directory, and run
the following command (it won't output anything yet).
1. Open a new terminal (keep the service running
in a different terminal).
2. Navigate to the project directory, and run
the following command (it won't output anything yet).

```
$ python run_worker.py
Expand Down Expand Up @@ -341,12 +341,12 @@ The arguments are the following:
- The Task Queue. This is the queue to which the Workflow (and its Activities)
are added.

You're ready to run the code. Do the following:
You're ready to run the code. Do the following 4 steps:

- Open a third terminal (the other
two processes should still be running)
- Navigate to the project
directory, and run the following command:
1. Open a third terminal (the other
two processes should still be running)
2. Navigate to the project
directory, and run the following command:

```
$ python run_workflow.py
Expand All @@ -358,11 +358,11 @@ that's running the Worker (not the terminal that's running the Workflow),
it should be asking you for your
API key.

- **Enter the Geoapify API key mentioned in the prerequisites.**
3. Enter the Geoapify API key mentioned in the prerequisites.

Next, it will ask you for an address.

- **Enter an address.**
4. Enter an address.

It will then query the Geoapify API to
geocode the address, and it will return the latitude and longitude
Expand Down

0 comments on commit a2a9d55

Please sign in to comment.