Mise en place de prisma et de express

This commit is contained in:
ETHEVE Fabien
2023-02-06 12:07:34 +01:00
parent fc8791004e
commit 0c934709ce
5 changed files with 1133 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")
}