Skip to content

Commit

Permalink
Link localhost URLs
Browse files Browse the repository at this point in the history
Add angle brackets to http://localhost URLs to make them links.
  • Loading branch information
djjuhasz committed May 1, 2024
1 parent 0afa2e7 commit ea05b03
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion website/content/en/docs/api/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ our <a href="{{< ref "/docs/development/api.md" >}}">API development</a> docs.
{{% /alert %}}

The reference below is based on Swagger UI. The default host is
http://127.0.0.1:9000, you can try out the API from here!
<http://127.0.0.1:9000>, you can try out the API from here!

{{< swaggerui src="/openapi.json" >}}
2 changes: 1 addition & 1 deletion website/content/en/docs/contribution-guidelines/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ run:

hugo serve

The site is now available at http://localhost:1313. The site is updated
The site is now available at <http://localhost:1313>. The site is updated
automatically when you make changes to the sources.

[netlify]: https://www.netlify.com/
Expand Down
6 changes: 3 additions & 3 deletions website/content/en/docs/development/environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ Finall, build and run Enduro with:
make run

With Enduro running in the background, you should be able to access the web
interface via http://127.0.0.1:9000/ or connect to the API, e.g.:
interface via <http://127.0.0.1:9000/> or connect to the API, e.g.:

curl -v 127.0.0.1:9000/collection

## Set up MinIO for object storage

MinIO is one of the services installed automatically with Docker Compose. You
should be able to access the web file browser via http://127.0.0.1:7460 using
should be able to access the web file browser via <http://127.0.0.1:7460> using
the following credentials:

- Access key: `minio`
Expand Down Expand Up @@ -89,7 +89,7 @@ since the event is buffered by Redis.
make run

Additionally, you can visualize workflows and activities from Temporal UI. Try
opening the following link: http://127.0.0.1:7440/namespaces/default/workflows.
opening the following link: <http://127.0.0.1:7440/namespaces/default/workflows>.

## Development workflow

Expand Down
4 changes: 2 additions & 2 deletions website/content/en/docs/installation/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ both Temporal (be prepared for an extensive set of metrics here) and Enduro.
In Enduro, the `debugListen` configuration parameter determines the address of
the HTTP server from which the metrics are served. E.g. use
`debugListen=127.0.0.1:9001` to make metrics available at
http://127.0.0.1:9001/metrics.
<http://127.0.0.1:9001/metrics>.

## Enduro

Expand All @@ -73,7 +73,7 @@ more about the configuration details [here]({{< relref
The configuration attribute `api.listen` determines the address where Enduro
sets up the server to listen.

Assuming that `api.listen=127.0.0.1:9000`, opening http://127.0.0.1:9000 from
Assuming that `api.listen=127.0.0.1:9000`, opening <http://127.0.0.1:9000> from
your browser will bring you to the web interface. An example on how to consume
the API via cURL is `curl -Ls 127.0.0.1:9000/collection | jq`:

Expand Down

0 comments on commit ea05b03

Please sign in to comment.