From 37ebe310970e01f26c7d2b5387317ca83ca60990 Mon Sep 17 00:00:00 2001 From: Nathaniel Tampus Date: Mon, 6 Mar 2023 20:24:36 +0800 Subject: [PATCH] clarify required env variables --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 0d414c2..67d4f5b 100644 --- a/README.md +++ b/README.md @@ -59,12 +59,11 @@ CORS_ORIGIN=http://localhost:3000 # replace with frontend URL PORT=3001 SESSION_SECRET=randomstring # replace for security -# PostgreSQL connection info +# PostgreSQL connection info (required) PGHOST=db.example.com PGUSER=exampleuser PGPASSWORD=examplepassword PGDATABASE=chessu - # or use a connection string instead DATABASE_URL=postgres://... ```