Skip to content

Commit

Permalink
Fix IndexerWriter.md links. (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
winder authored Jul 21, 2023
1 parent 98efe5a commit 2e6147f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/tutorials/IndexerWriter.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ graph LR;

## Node (algod with follow mode)

This is the blockchain data source. When in [follow mode](follow-mode-doc), algod is controlled by Conduit to ensure the two services are always operating on the same block. In this way algod is able to
This is the blockchain data source. When in [follow mode][follow-mode-doc], algod is controlled by Conduit to ensure the two services are always operating on the same block. In this way algod is able to
store the minimum number of blocks required to stream data to Conduit.

We will cover a basic installation using `update.sh`, for [additional
information refer to the developer portal.](node-install-doc)
information refer to the developer portal.][node-install-doc]

```bash
# Download update.sh script.
Expand Down Expand Up @@ -80,7 +80,7 @@ When finished, this command will stop the node:

This document cannot go into the complete details for configuring your
database. PostgreSQL or a compatible database like Amazon Aurora are suitable
for the Indexer API. See the [Indexer](indexer-readme) documentation more details.
for the Indexer API. See the [Indexer][indexer-readme] documentation more details.

For this tutorial the process is simplified by using a local docker image.

Expand All @@ -106,7 +106,7 @@ docker rm local-database

Now we will configure Conduit to import data from `algod` and export to `PostgreSQL`.

Download the `conduit` binary [from the releases page](conduit-release). Put
Download the `conduit` binary [from the releases page][conduit-release]. Put
the binary in the current working directory, or install it to your path and use
normally.

Expand Down Expand Up @@ -145,9 +145,9 @@ Start Conduit with:

## Indexer API

With data in PostgreSQL, you can now start the [Indexer API](indexer-read-only).
With data in PostgreSQL, you can now start the [Indexer API][indexer-read-only].

Download Indexer 3.x [from the releases page](indexer-release). Put
Download Indexer 3.x [from the releases page][indexer-release]. Put
the `algorand-indexer` binary in the current working directory, or install it to your path and use
normally.

Expand All @@ -161,7 +161,7 @@ To test that it's working, here is an example API call:
curl http://localhost:8980/v2/accounts
```

More information about Indexer can be found in the [Indexer README](indexer-readme) and the [Indexer API documentation](indexer-rest-api).
More information about Indexer can be found in the [Indexer README][indexer-readme] and the [Indexer API documentation][indexer-rest-api].

[follow-mode-doc]: https://github.com/algorand/go-algorand/blob/master/docs/follower_node.md
[node-install-doc]: https://developer.algorand.org/docs/run-a-node/setup/install/
Expand Down

0 comments on commit 2e6147f

Please sign in to comment.