From f42bf6783948a731bc0fc1c317b413d982f4b36b Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Thu, 8 Aug 2024 14:58:47 +0200 Subject: [PATCH] doc(main): Updated documentation (#278) --- docs/tutorials/http-application.md | 4 ++-- docs/tutorials/worker-application.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/tutorials/http-application.md b/docs/tutorials/http-application.md index 11fc8985..4cf6d06f 100644 --- a/docs/tutorials/http-application.md +++ b/docs/tutorials/http-application.md @@ -24,7 +24,7 @@ To create your `github.com/foo/bar` repository, you can use the [HTTP applicatio It provides: - a ready to extend [Yokai](https://github.com/ankorstore/yokai) application, with the [HTTP server](../modules/fxhttpserver.md) module installed -- a ready to use [dev environment](https://github.com/ankorstore/yokai-http-template/blob/main/docker-compose.yaml), based on [Air](https://github.com/cosmtrek/air) (for live reloading) +- a ready to use [dev environment](https://github.com/ankorstore/yokai-http-template/blob/main/docker-compose.yaml), based on [Air](https://github.com/air-verse/air) (for live reloading) - a ready to use [Dockerfile](https://github.com/ankorstore/yokai-http-template/blob/main/Dockerfile) for production - some examples of [handler](https://github.com/ankorstore/yokai-http-template/blob/main/internal/handler/example.go) and [test](https://github.com/ankorstore/yokai-http-template/blob/main/internal/handler/example_test.go) to get started @@ -72,7 +72,7 @@ When you use the template, an example endpoint is provided on [http://localhost: Welcome to http-app. ``` -To ease development, [Air](https://github.com/cosmtrek/air) is watching any changes you perform on `Go code` or `config files` to perform hot reload. +To ease development, [Air](https://github.com/air-verse/air) is watching any changes you perform on `Go code` or `config files` to perform hot reload. Let's rename your application to `gopher-api` by updating `app.name` in the configuration: diff --git a/docs/tutorials/worker-application.md b/docs/tutorials/worker-application.md index e18698e7..f8d96dac 100644 --- a/docs/tutorials/worker-application.md +++ b/docs/tutorials/worker-application.md @@ -26,7 +26,7 @@ the [worker application template](../getting-started/worker-application.md). It provides: - a ready to extend [Yokai](https://github.com/ankorstore/yokai) application, with the [worker](../modules/fxworker.md) module installed -- a ready to use [dev environment](https://github.com/ankorstore/yokai-worker-template/blob/main/docker-compose.yaml), based on [Air](https://github.com/cosmtrek/air) (for live reloading) +- a ready to use [dev environment](https://github.com/ankorstore/yokai-worker-template/blob/main/docker-compose.yaml), based on [Air](https://github.com/air-verse/air) (for live reloading) - a ready to use [Dockerfile](https://github.com/ankorstore/yokai-worker-template/blob/main/Dockerfile) for production - some examples of [worker](https://github.com/ankorstore/yokai-worker-template/blob/main/internal/worker/example.go) and [test](https://github.com/ankorstore/yokai-worker-template/blob/main/internal/worker/example_test.go) to get started @@ -81,7 +81,7 @@ You can run `make logs` to see it in action: INF running module=worker service=worker-app worker=example-worker workerExecutionID=346775a2-6be5-43c3-907f-100a986cb2dc ``` -To ease development, [Air](https://github.com/cosmtrek/air) is watching any changes you perform on `Go code` +To ease development, [Air](https://github.com/air-verse/air) is watching any changes you perform on `Go code` or `config files` to perform hot reload. Let's change: