This repository has been archived on 2024-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
DataHoard/config.example.json

42 lines
931 B
JSON

{
"options": {
"parallel_nodes": 2,
"parallel_node_tasks": 5,
"separate_into_tables": false,
"mysql_dump_settings": "--no-comments",
"database_export_path": "./exports",
"logs_path": "./logs"
},
"smtp": {
"host": "",
"port": "",
"ssl": true,
"username": "",
"password": "",
"email_from": "",
"to": ""
},
"nodes": [
{
"name": "Main Connection",
"debug": 0,
"log": true,
"mail": {
"enabled": true,
"email_to": "",
"email_cc": []
},
"hostname": "localhost",
"username": "root",
"password": "",
"port" : 3306,
"databases": {
"blacklist": null,
"whitelist": null
}
}
]
}