feat(back): init nest and prisma

This commit is contained in:
Louis Auzuret
2022-05-03 17:25:43 +02:00
parent 8cff5c42a3
commit 4e9ad2a05f
18 changed files with 15936 additions and 0 deletions
+11
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 = "postgresql"
url = env("DATABASE_URL")
}