From 0b8e04df79aa3ce5bd98d0519de318734dadf7d8 Mon Sep 17 00:00:00 2001 From: rotimi Date: Mon, 29 Apr 2024 17:32:18 -0600 Subject: [PATCH] Documentation updates --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 05d8b17..5f4dd99 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,8 @@ There's an accompanying [command-line tool](https://github.com/rotexsoft/leanorm >`./vendor/bin/phpunit --coverage-text` > You can set the environment variable **LEANORM_PDO_DSN** with a valid $dsn string for pdo e.g. LEANORM_PDO_DSN=sqlite::memory: - > For Postgres, the dsn must include **dbname=blog** and you should make sure a blog database exists in the Postgres instance. You don't need this for Sqlite, MariaDB or MySql, the database will be programmatically created. + +- For Postgres, the dsn must include **dbname=blog** and you should make sure a blog database exists in the Postgres instance. You don't need this for Sqlite, MariaDB or MySql, the database will be programmatically created. > You can set the environment variable **LEANORM_PDO_USERNAME** with a valid $username string for pdo if needed e.g. LEANORM_PDO_USERNAME=jblow