blob: ca7104a5277d490fb3ab4f83eaa8b3fe63e85867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import '../env';
export = process.env.NODE_ENV === 'development'
? {
type: 'postgres',
host: 'localhost',
port: 5432,
database: process.env.DATABASE_URL,
autoLoadEntities: true,
migrations: ['src/database/migrations/*.ts'],
cli: {
migrationsDir: 'src/database/migrations',
},
}
: {
url: process.env.DATABASE_URL,
ssl: { rejectUnauthorized: true },
migrations: ['src/database/migrations/*.ts'],
cli: {
migrationsDir: 'src/database/migrations',
},
};
|