Total Complexity | 0 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | from db_sync_tool import sync |
||
2 | |||
3 | if __name__ == "__main__": |
||
4 | sync.Sync( |
||
5 | mute=True, |
||
6 | yes=True, |
||
7 | config={ |
||
8 | "type": "TYPO3", |
||
9 | "target": { |
||
10 | "path": "/var/www/html/tests/files/www2/LocalConfiguration.php" |
||
11 | }, |
||
12 | "origin": { |
||
13 | "host": "www1", |
||
14 | "user": "user", |
||
15 | "password": "password", |
||
16 | "path": "/var/www/html/tests/files/www1/LocalConfiguration.php" |
||
17 | } |
||
19 |