mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
25 lines
658 B
TypeScript
25 lines
658 B
TypeScript
import anonymizationService = require('./services/anonymization');
|
|
import sqlInit = require('./services/sql_init');
|
|
require('./becca/entity_constructor');
|
|
|
|
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: any) {
|
|
console.error(e.message, e.stack);
|
|
}
|
|
|
|
process.exit(1);
|
|
});
|