chore: setup empty express app

This commit is contained in:
Elias Renman
2023-05-21 14:55:57 +02:00
parent 3b7d3b23da
commit bb9407c2fa
29 changed files with 667 additions and 4073 deletions

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 = "sqlite"
url = env("DATABASE_URL")
}