From 114ed8444c6166ad289728c779c770b44c89c20a Mon Sep 17 00:00:00 2001 From: Jordan Stephens Date: Sat, 30 Mar 2024 18:47:33 -0700 Subject: [PATCH] Fix a broken link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 502233f..639c9b5 100644 --- a/README.md +++ b/README.md @@ -254,7 +254,7 @@ func TestMain(m *testing.M) { ## Database -The database currently used is [PostgreSQL](https://www.postgresql.org/) but you are free to use whatever you prefer. If you plan to continue using [Ent](https://entgo.io/), the incredible ORM, you can check their supported databases [here](https://entgo.io/docs/dialects). The database-driver and client is provided by [pgx](github.com/jackc/pgx/v4) and included in the `Container`. +The database currently used is [PostgreSQL](https://www.postgresql.org/) but you are free to use whatever you prefer. If you plan to continue using [Ent](https://entgo.io/), the incredible ORM, you can check their supported databases [here](https://entgo.io/docs/dialects). The database-driver and client is provided by [pgx](https://github.com/jackc/pgx/tree/v4) and included in the `Container`. Database configuration can be found and managed within the `config` package.