@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
41 lines (32 loc) • 1.29 kB
JavaScript
const { join } = require('node:path');
const { Pool } = require('pg');
const { drizzle } = require('drizzle-orm/node-postgres');
const migrator = require('drizzle-orm/node-postgres/migrator');
const { PGVECTOR_HINT } = require('./errorHint');
if (!process.env.DATABASE_URL) {
throw new Error('DATABASE_URL is not set, please set it in your environment variables.');
}
const client = new Pool({ connectionString: process.env.DATABASE_URL });
const db = drizzle(client);
const runMigrations = async () => {
console.log('[Database] Start to migration...');
await migrator.migrate(db, {
migrationsFolder: join(__dirname, './migrations'),
});
console.log('✅ database migration pass.');
console.log('-------------------------------------');
// eslint-disable-next-line unicorn/no-process-exit
process.exit(0);
};
// eslint-disable-next-line unicorn/prefer-top-level-await
runMigrations().catch((err) => {
console.error(
'❌ Database migrate failed. Please check your database is valid and DATABASE_URL is set correctly. The error detail is below:',
);
console.error(err);
if (err.message.includes('extension "vector" is not available')) {
console.info(PGVECTOR_HINT);
}
// eslint-disable-next-line unicorn/no-process-exit
process.exit(1);
});