From 4dae76da27b932e08a85a58a024ffed39b073dbd Mon Sep 17 00:00:00 2001 From: Full-Stack Alex Date: Sun, 28 Jul 2024 21:22:23 +0200 Subject: [PATCH] Update README.md Update .env var syntax to use underscores instead of dots, which cause an error difficult to debug if you are not familiar with Confik. --- databases/postgres/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/databases/postgres/README.md b/databases/postgres/README.md index c4241ed8..a42da2c1 100644 --- a/databases/postgres/README.md +++ b/databases/postgres/README.md @@ -60,12 +60,12 @@ On many Linux distributions you may prefix the shell commands with `sudo -u post ```ini SERVER_ADDR=127.0.0.1:8080 - PG.USER=test_user - PG.PASSWORD=testing - PG.HOST=127.0.0.1 - PG.PORT=5432 - PG.DBNAME=testing_db - PG.POOL.MAX_SIZE=16 + PG__USER=test_user + PG__PASSWORD=testing + PG__HOST=127.0.0.1 + PG__PORT=5432 + PG__DBNAME=testing_db + PG__POOL_MAX_SIZE=16 ``` 6. Run the server: