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
Raw Normal View History

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