From 36681c07764eeb04b02ce2ea3dea3903e647b8b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Eduardo=20Jer=C3=A9z=20Gir=C3=B3n?= Date: Fri, 19 Jul 2024 23:45:05 -0600 Subject: [PATCH] Update PostgreSQL connection string for development environment --- .env.dev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.dev b/.env.dev index 1f5592e..37d7ced 100644 --- a/.env.dev +++ b/.env.dev @@ -11,4 +11,4 @@ PBW_ENCRYPTION_KEY="encryption-key" # Database connection string for a PostgreSQL database where the pgbackweb # will store its data. -PBW_POSTGRES_CONN_STRING="postgresql://postgres:password@localhost:5432/pgbackweb" +PBW_POSTGRES_CONN_STRING="postgresql://postgres:password@host.docker.internal:5432/pgbackweb?sslmode=disable"