diff --git a/.eslintignore b/.eslintignore index 6140036..25afcf9 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,4 +1,6 @@ next-env.d.ts .next .eslintrc.js -next.config.js +*.config.js +# next.config.js +# tailwind.config.js diff --git a/pages/index.tsx b/pages/index.tsx index e9783b0..cdc2265 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -11,6 +11,15 @@ import Layout from "~/components/Layout"; import { ErrorTypes, SchemaError } from "~/util/types"; const initial = ` +datasource db { + provider = "postgresql" + url = env("DATABASE_URL") +} + +generator client { + provider = "prisma-client-js" +} + model User { id Int @id @default(autoincrement()) createdAt DateTime @default(now())