From 81d0863d7286e9077258191895f8fb0a4223666e Mon Sep 17 00:00:00 2001 From: Cam Moore Date: Wed, 6 Nov 2024 09:45:18 -1000 Subject: [PATCH] Update sample.env --- sample.env | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/sample.env b/sample.env index fab4e3c..f504a64 100644 --- a/sample.env +++ b/sample.env @@ -11,4 +11,14 @@ DATABASE_URL="postgresql://user:password@localhost:5432/mydb?schema=public" # for redirections on login, etc. NEXTAUTH_SECRET=secret -NEXTAUTH_URL=http://localhost:3000 \ No newline at end of file +NEXTAUTH_URL=http://localhost:3000 + +# Created by Vercel CLI +POSTGRES_DATABASE="verceldb" +POSTGRES_HOST="***" +POSTGRES_PASSWORD="***" +POSTGRES_PRISMA_URL="postgres://default:***@***/verceldb?pgbouncer=true&connect_timeout=15&sslmode=require" +POSTGRES_URL="postgres://default:***@***/verceldb?sslmode=require" +POSTGRES_URL_NON_POOLING="postgres://default:***@***/verceldb?sslmode=require" +POSTGRES_URL_NO_SSL="postgres://default:***@***/verceldb" +POSTGRES_USER="default"