Initial commit

This commit is contained in:
Pantheon 2025-04-02 15:57:39 -04:00
commit a9734dc4a5
49 changed files with 2790 additions and 0 deletions

13
prisma/schema.prisma Normal file
View file

@ -0,0 +1,13 @@
generator client {
provider = "prisma-client-js"
}
generator pothos {
provider = "prisma-pothos-types"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
directUrl = env("DIRECT_URL")
}