This commit is contained in:
2022-02-15 20:56:16 +00:00
parent 381520f865
commit 7b5c87fd28
10 changed files with 87 additions and 20 deletions

View File

@@ -16,7 +16,7 @@ AyaNova expects the pg_dump utility path to be provided by a config.json propert
The value specified should be a string containing a fully qualified file path to the pg_dump utility.
Example config.json entry
Example LINUX config.json entry
```json
{
@@ -25,6 +25,16 @@ Example config.json entry
}
```
Example WINDOWS config.json entry
(Back slashes need to be **doubled** in config.json file or the server will fail to start)
```json
{
...other properties...
"AYANOVA_BACKUP_PG_DUMP_PATH": "c:\\Program files\\postgresql\\14.1\\bin"
}
```
Example command line parameter
`ayanova.exe --AYANOVA_BACKUP_PG_DUMP_PATH="/usr/lib/postgresql/14.1/bin/"` (not real)