/**
 * Standalone seed script — run with: npm run db:seed
 * Creates the default demo user if it does not exist.
 */
import 'dotenv/config';
import { seedDatabase } from './seed';

seedDatabase()
  .then(() => {
    console.log('Seed complete.');
    process.exit(0);
  })
  .catch((err) => {
    console.error('Seed failed:', err);
    process.exit(1);
  });
