Relocate migration scripts to `drizzle/scripts`, update `start` and `migrate` to use the new path, and add a `generate` script for contributors. Update README migration guidance for SQLite vs Postgres workflows. BREAKING CHANGE: remove `migrate:force` and change migration script paths; consumers relying on `scripts/migrate*.mjs` or `pnpm migrate:force` must update to the new commands.
49 lines
1.4 KiB
JavaScript
49 lines
1.4 KiB
JavaScript
import { spawnSync } from 'node:child_process';
|
|
import path from 'node:path';
|
|
import fs from 'node:fs';
|
|
import * as dotenv from 'dotenv';
|
|
|
|
function loadEnvFiles() {
|
|
// Approximate Next.js behavior enough for server-side scripts.
|
|
// Load .env first, then .env.local (local overrides).
|
|
const cwd = process.cwd();
|
|
const envPath = path.join(cwd, '.env');
|
|
const envLocalPath = path.join(cwd, '.env.local');
|
|
|
|
if (fs.existsSync(envPath)) {
|
|
dotenv.config({ path: envPath });
|
|
}
|
|
if (fs.existsSync(envLocalPath)) {
|
|
dotenv.config({ path: envLocalPath, override: true });
|
|
}
|
|
}
|
|
|
|
loadEnvFiles();
|
|
|
|
const authEnabled = Boolean(process.env.BETTER_AUTH_SECRET && process.env.BETTER_AUTH_URL);
|
|
|
|
if (!authEnabled) {
|
|
// When auth is disabled, the app must not touch sqlite/postgres at all.
|
|
console.log('[generate] Skipping (auth disabled). Missing BETTER_AUTH_SECRET and/or BETTER_AUTH_URL.');
|
|
process.exit(0);
|
|
}
|
|
|
|
if (!process.env.POSTGRES_URL) {
|
|
console.error('[generate] POSTGRES_URL is required to generate postgres migrations.');
|
|
process.exit(1);
|
|
}
|
|
|
|
const extraArgs = process.argv.slice(2);
|
|
|
|
for (const configFile of ['drizzle.config.sqlite.ts', 'drizzle.config.pg.ts']) {
|
|
const result = spawnSync('drizzle-kit', ['generate', '--config', configFile, ...extraArgs], {
|
|
stdio: 'inherit',
|
|
env: process.env,
|
|
});
|
|
|
|
if ((result.status ?? 1) !== 0) {
|
|
process.exit(result.status ?? 1);
|
|
}
|
|
}
|
|
|
|
process.exit(0);
|