Initial commit

This commit is contained in:
git
2026-01-03 22:05:49 +07:00
commit 2f8859dbe8
63 changed files with 6708 additions and 0 deletions

46
config.quickstart.yaml Executable file
View File

@@ -0,0 +1,46 @@
# Quick Start Configuration
# Minimal configuration to get started quickly
database_pairs:
- name: "Quick_Test"
enabled: true
baseline:
server: "YOUR_SERVER_NAME"
database: "YOUR_BASELINE_DB"
target:
server: "YOUR_SERVER_NAME"
database: "YOUR_TARGET_DB"
comparison:
mode: "health_check"
row_count:
enabled: true
tolerance_percent: 0.0
schema:
enabled: true
checks:
column_names: true
data_types: true
aggregates:
enabled: false
tables:
# Add your tables here after running discovery
# Example:
# - schema: "dbo"
# name: "YourTable"
# enabled: true
# expected_in_target: true
# aggregate_columns: []
reporting:
output_dir: "./reports"
investigation_dir: "./investigation_reports"
formats:
html: true
csv: true
pdf: false
logging:
level: "INFO"
output_dir: "./logs"