From b172ac58349bea5ac0b778f2202e41643ae88c45 Mon Sep 17 00:00:00 2001 From: Catalin Pit <25515812+catalinpit@users.noreply.github.com> Date: Wed, 24 Jul 2024 11:54:29 +0300 Subject: [PATCH] fix: add db auth details --- .env.example | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.env.example b/.env.example index a07419aaa..fc6438e5d 100644 --- a/.env.example +++ b/.env.example @@ -22,6 +22,9 @@ NEXT_PUBLIC_WEBAPP_URL="http://localhost:3000" NEXT_PUBLIC_MARKETING_URL="http://localhost:3001" # [[DATABASE]] +POSTGRES_USER="user" +POSTGRES_PASSWORD="changeme" +POSTGRES_DB=documenso NEXT_PRIVATE_DATABASE_URL="postgres://documenso:password@127.0.0.1:54320/documenso" # Defines the URL to use for the database when running migrations and other commands that won't work with a connection pool. NEXT_PRIVATE_DIRECT_DATABASE_URL="postgres://documenso:password@127.0.0.1:54320/documenso"