Add Prisma integration with SQLite, update dependencies, and configure Svelte

This commit is contained in:
Norbert Maciaszek
2025-11-24 21:40:52 +01:00
parent ca22858160
commit 0a6e627e77
11 changed files with 1725 additions and 9 deletions

14
prisma.config.ts Normal file
View File

@@ -0,0 +1,14 @@
// This file was generated by Prisma and assumes you have installed the following:
// npm install --save-dev prisma dotenv
import "dotenv/config";
import { defineConfig, env } from "prisma/config";
export default defineConfig({
schema: "prisma/schema.prisma",
migrations: {
path: "prisma/migrations",
},
datasource: {
url: env("DATABASE_URL"),
},
});