Use .env file for backup configuration #1

Open
skobkin wants to merge 17 commits from pg_backup_dotenv into main
Showing only changes of commit 6498a3ab1d - Show all commits

View file

@ -5,13 +5,13 @@
Do not forget to create and/or edit `~/.pgpass` file providing all needed passwords for each host: Do not forget to create and/or edit `~/.pgpass` file providing all needed passwords for each host:
The format is the following: The format is the following:
```csv ```properties
hostname:port:database:username:password hostname:port:database:username:password
``` ```
Example Example
```csv ```properties
localhost:5432:*:postgres:pg_password_1 localhost:5432:*:postgres:pg_password_1
localhost:5433:*:postgres:pg_password_2 localhost:5433:*:postgres:pg_password_2
``` ```