iboard/prisma.config.ts
cheney 4c7f600a6b
Some checks failed
Docker Build and Push / build-image (push) Failing after 6m27s
增加数据库
2026-04-09 22:07:23 +08:00

15 lines
374 B
TypeScript

// 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"],
},
});