mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-18 15:23:38 +01:00
15 lines
360 B
JavaScript
15 lines
360 B
JavaScript
|
require('dotenv').config();
|
||
|
const fs = require('fs');
|
||
|
const path = require('path');
|
||
|
|
||
|
const db = process.env.DATABASE_URL.split(':')[0];
|
||
|
|
||
|
if (!db) {
|
||
|
throw new Error('Database not specified');
|
||
|
}
|
||
|
|
||
|
const src = path.resolve(__dirname, `../prisma/schema.${db}.prisma`);
|
||
|
const dest = path.resolve(__dirname, '../prisma/schema.prisma');
|
||
|
|
||
|
fs.copyFileSync(src, dest);
|