Switched to NestJS

This commit is contained in:
2022-09-05 09:51:34 +02:00
parent 75e0ad2f6f
commit 87aa032b6b
38 changed files with 3075 additions and 3368 deletions

View File

@@ -1,21 +0,0 @@
// 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 = "postgresql"
url = env("DATABASE_URL")
}
generator tsed {
provider = "tsed-prisma"
}
model User {
id Int @default(autoincrement()) @id
email String @unique
name String?
}