From 78fd744bc232839e128e8a63c1807a7f44dea5e7 Mon Sep 17 00:00:00 2001 From: David Juhasz Date: Wed, 1 May 2024 14:55:58 -0700 Subject: [PATCH] Link localhost URLs Add angle brackets to http://localhost URLs to make them links. --- website/content/en/docs/api/_index.md | 2 +- website/content/en/docs/contribution-guidelines/docs.md | 2 +- website/content/en/docs/development/environment.md | 6 +++--- website/content/en/docs/installation/_index.md | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/website/content/en/docs/api/_index.md b/website/content/en/docs/api/_index.md index c398d330..9273b8c7 100644 --- a/website/content/en/docs/api/_index.md +++ b/website/content/en/docs/api/_index.md @@ -13,6 +13,6 @@ our }}">API development 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! +, you can try out the API from here! {{< swaggerui src="/openapi.json" >}} diff --git a/website/content/en/docs/contribution-guidelines/docs.md b/website/content/en/docs/contribution-guidelines/docs.md index 59cf878f..d9725346 100644 --- a/website/content/en/docs/contribution-guidelines/docs.md +++ b/website/content/en/docs/contribution-guidelines/docs.md @@ -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 . The site is updated automatically when you make changes to the sources. [netlify]: https://www.netlify.com/ diff --git a/website/content/en/docs/development/environment.md b/website/content/en/docs/development/environment.md index 9b6cc045..0b2b4b5c 100644 --- a/website/content/en/docs/development/environment.md +++ b/website/content/en/docs/development/environment.md @@ -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 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 using the following credentials: - Access key: `minio` @@ -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: . ## Development workflow diff --git a/website/content/en/docs/installation/_index.md b/website/content/en/docs/installation/_index.md index 3c9b6ad3..bfad09fa 100644 --- a/website/content/en/docs/installation/_index.md +++ b/website/content/en/docs/installation/_index.md @@ -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. +. ## Enduro @@ -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 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`: