Commit 0ad3cb94 authored by Hendrik Garske's avatar Hendrik Garske

Fix: Entferne prisma.config.ts (nicht benötigt für Prisma 6)

parent c99f77ff
Pipeline #10 failed with stages
in 1 minute and 26 seconds
......@@ -14,7 +14,6 @@ cache:
before_script:
- npm ci
- npx prisma generate
build:
stage: build
......
// This file was generated by Prisma, and assumes you have installed the following:
// npm install --save-dev prisma dotenv
import "dotenv/config";
import { defineConfig } from "prisma/config";
export default defineConfig({
schema: "prisma/schema.prisma",
migrations: {
path: "prisma/migrations",
},
datasource: {
url: process.env["DATABASE_URL"],
},
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment