Initial Commit of the PDM project (ready for DWS migration)

This commit is contained in:
will
2026-04-20 08:42:38 -05:00
commit dda7b664e7
2721 changed files with 442772 additions and 0 deletions

32
config.json.template Normal file
View File

@@ -0,0 +1,32 @@
{
"source_db": {
"driver": "{ODBC Driver 17 for SQL Server}",
"server": "source-server-name",
"database": "source-database-name",
"username": "your-username",
"password": "your-password",
"trusted_connection": false
},
"target_db": {
"driver": "{ODBC Driver 17 for SQL Server}",
"server": "target-server-name",
"database": "target-database-name",
"username": "your-username",
"password": "your-password",
"trusted_connection": false
},
"path_mapping": {
"target_root_folder": "DWS",
"case_sensitive": false
},
"migration": {
"duplicate_handling": "ignore",
"batch_size": 500,
"commit_interval": 10,
"document_status_batch_size": 5000
},
"configuration_mapping_overrides": {
"165": 11250,
"167": 11359
}
}