mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-27 04:44:43 -05:00
8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
/* eslint-disable no-console */
|
|
import "dotenv/config";
|
|
import { seed } from "~/db/seed";
|
|
|
|
console.log("seeding...");
|
|
seed();
|
|
console.log("done!");
|