twenty/server/ormconfig.ts

17 lines
516 B
TypeScript
Raw Normal View History

import dotenv from 'dotenv';
import { PostgresConnectionOptions } from 'typeorm/driver/postgres/PostgresConnectionOptions';
dotenv.config();
export default {
url: process.env.PG_DATABASE_URL,
type: 'postgres',
entities: [__dirname + '/src/core/**/*.entity{.ts,.js}'],
synchronize: false,
migrationsRun: false,
migrationsTableName: '_typeorm_migrations',
migrations: [__dirname + '/migrations/**/*{.ts,.js}'],
cli: {
migrationsDir: __dirname + '/migrations',
},
} as PostgresConnectionOptions;