- Implement PPTXSchemaValidator for validating PowerPoint presentation XML files against XSD schemas. - Create RedliningValidator to check tracked changes in Word documents, ensuring proper author tracking. - Introduce recalc.py script to recalculate Excel formulas using LibreOffice, including error handling for Excel-specific errors. - Add UI components for collapsible sections and tabs using Radix UI. - Implement stage validation schema using Zod for managing project stages.
15 lines
406 B
TypeScript
15 lines
406 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",
|
|
seed: "tsx prisma/seed.ts",
|
|
},
|
|
datasource: {
|
|
url: process.env["DATABASE_URL"],
|
|
},
|
|
});
|