25 lines
439 B
YAML
25 lines
439 B
YAML
|
default:
|
||
|
outputs:
|
||
|
|
||
|
dev:
|
||
|
type: postgres
|
||
|
threads: [1 or more]
|
||
|
host: [host]
|
||
|
port: [port]
|
||
|
user: [dev_username]
|
||
|
pass: [dev_password]
|
||
|
dbname: [dbname]
|
||
|
schema: [dev_schema]
|
||
|
|
||
|
prod:
|
||
|
type: postgres
|
||
|
threads: [1 or more]
|
||
|
host: [host]
|
||
|
port: [port]
|
||
|
user: [prod_username]
|
||
|
pass: [prod_password]
|
||
|
dbname: [dbname]
|
||
|
schema: [prod_schema]
|
||
|
|
||
|
target: dev
|