mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
25 lines
660 B
JavaScript
25 lines
660 B
JavaScript
const anonymizationService = require('./services/anonymization.js');
|
|
const sqlInit = require('./services/sql_init.js');
|
|
require('./becca/entity_constructor.js');
|
|
|
|
sqlInit.dbReady.then(async () => {
|
|
try {
|
|
console.log("Starting anonymization...");
|
|
|
|
const resp = await anonymizationService.createAnonymizedCopy('full');
|
|
|
|
if (resp.success) {
|
|
console.log(`Anonymized file has been saved to: ${resp.anonymizedFilePath}`);
|
|
|
|
process.exit(0);
|
|
} else {
|
|
console.log("Anonymization failed.");
|
|
}
|
|
}
|
|
catch (e) {
|
|
console.error(e.message, e.stack);
|
|
}
|
|
|
|
process.exit(1);
|
|
});
|