clarify required env variables

This commit is contained in:
Nathaniel Tampus
2023-03-06 20:24:36 +08:00
parent d9bb753315
commit 37ebe31097

View File

@@ -59,12 +59,11 @@ CORS_ORIGIN=http://localhost:3000 # replace with frontend URL
PORT=3001 PORT=3001
SESSION_SECRET=randomstring # replace for security SESSION_SECRET=randomstring # replace for security
# PostgreSQL connection info # PostgreSQL connection info (required)
PGHOST=db.example.com PGHOST=db.example.com
PGUSER=exampleuser PGUSER=exampleuser
PGPASSWORD=examplepassword PGPASSWORD=examplepassword
PGDATABASE=chessu PGDATABASE=chessu
# or use a connection string instead # or use a connection string instead
DATABASE_URL=postgres://... DATABASE_URL=postgres://...
``` ```