feat: first commit

This commit is contained in:
2022-12-17 23:41:57 +01:00
parent f298b48be1
commit fdc8e20329
16 changed files with 1448 additions and 0 deletions

11
prisma/schema.prisma Normal file
View File

@@ -0,0 +1,11 @@
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "mongodb"
url = env("MONGODB")
}