chore(makefile): add parity targets and seeding

This commit is contained in:
William Valentin
2025-09-23 11:39:30 -07:00
parent dec8c7b42e
commit 16bd4a8b20
3 changed files with 69 additions and 1 deletions

14
scripts/seed.ts Normal file
View File

@@ -0,0 +1,14 @@
import { databaseSeeder } from '../services/database.seeder';
const run = async () => {
try {
await databaseSeeder.seedDatabase();
console.log('✅ Database seeding complete');
process.exit(0);
} catch (error) {
console.error('❌ Database seeding failed', error);
process.exit(1);
}
};
run();