5 lines
292 B
JavaScript
5 lines
292 B
JavaScript
// Keep the historical reset-db entry point, but run the same guarded initializer used
|
|
// by initialize-system so SQLite, MySQL, .env loading and schema checks stay in sync.
|
|
if (!process.argv.slice(2).includes('--empty')) process.argv.push('--empty');
|
|
await import('./import-test-data.mjs');
|