Merge branch 'dev' of lab/parse-edi into master

This commit is contained in:
steve 2021-01-12 14:04:37 -06:00 committed by Gogs
commit 9823683fd4
1 changed files with 10 additions and 2 deletions

View File

@ -60,10 +60,18 @@ We wrote this frame to be used in both command line or as a library within in yo
--config configuration to support data-store
The configuration file template for exports is as follows :
The configuration file needed to implement export is modelled after the following template:
{"provider":"<postgresql|redshift|mysql|mariadb>","db":"mydatabase",["host":"server-name","port":5432,"user":"me","password":"!@#z4qm","schema":"target-schema"]}
{
"provider":"<postgresql|redshift|mysql|mariadb>",
"db":"mydatabase",
[
"host":"server-name","port":5432,
"user":"me","password":"!@#z4qm",
"schema":"target-schema"
]
}
**parameters:**