pipekit/config/connections.json
Paul Trowbridge dd9f89f4b5 feat: version-control pipeline definitions via export/apply
Add `pipekit export` / `pipekit apply` (pipekit/config_io.py) to serialise the
DB's config — drivers, connections, modules (+ columns, watermarks, hooks),
groups, schedules — to a git-trackable text tree under config/, and rehydrate
it. SQLite stays runtime state; definitions become diffable/reviewable/
revertible.

- config only: run_log/group_run/settings and per-run state columns excluded
- name-keyed refs (portable across databases); source_query in .sql sidecars;
  columns as real JSON arrays for line-by-line diffs
- newline-normalised so CRLF-vs-LF is never a spurious change
- apply is create/update by name; child collections fully synced; top-level
  deletes gated behind --prune; --dry-run prints the plan
- round-trip is identity (export -> apply --dry-run == nothing to do)

Commits the current config/ as the first baseline, capturing the freshly
populated columns_json for rm00101/rm00301/iv00101. Documented in SPEC.md.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-22 10:56:55 -04:00

33 lines
865 B
JSON

[
{
"name": "S78030956",
"driver": "db2-jt400",
"jdbc_url": "jdbc:as400://S7830956;libraries=RLARP,LGDAT,LGPGM",
"username": "ptrowbridg",
"password": "$DB2PW",
"default_dest_connection": "usmidsap02",
"default_dest_schema": "cms",
"notes": "None"
},
{
"name": "sqlserver",
"driver": "mssql-jdbc",
"jdbc_url": "jdbc:sqlserver://usmidsql01:1433;databaseName=Fanalysis;encrypt=false",
"username": "Pricing",
"password": "$SQLCMDPASSWORD",
"default_dest_connection": "usmidsap02",
"default_dest_schema": null,
"notes": null
},
{
"name": "usmidsap02",
"driver": "postgresql",
"jdbc_url": "jdbc:postgresql://10.0.10.40:5432/ubm",
"username": "ptrowbridge",
"password": "$PGPW",
"default_dest_connection": null,
"default_dest_schema": "None",
"notes": "None"
}
]