-
Notifications
You must be signed in to change notification settings - Fork 0
/
ormconfig.ts
61 lines (60 loc) · 1.54 KB
/
ormconfig.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
require('dotenv').config();
module.exports = [
{
name: 'dev',
type: 'postgres',
host: process.env.POSTGRES_HOST,
port: 5432,
username: process.env.POSTGRES_USER,
password: process.env.POSTGRES_PASSWORD,
database: process.env.POSTGRES_DB_DEV,
synchronize: false,
logging: false,
entities: [
'src/entity/**/*.ts',
],
migrations: [
'src/migration/**/*.ts',
],
subscribers: [
'src/subscriber/**/*.ts',
],
seeds: [
'src/seed_data/seeds/**/*.ts',
],
factories: [
'src/seed_data/factories/**/*.ts',
],
cli: {
entitiesDir: 'src/entity',
migrationsDir: 'src/migration',
subscribersDir: 'src/subscriber',
},
},
{
name: 'test',
type: 'postgres',
host: process.env.POSTGRES_HOST,
port: 5432,
username: process.env.POSTGRES_USER,
password: process.env.POSTGRES_PASSWORD,
database: process.env.POSTGRES_DB_TEST,
synchronize: true,
dropSchema: true,
logging: false,
entities: [
'src/entity/**/*.ts',
],
migrations: [
'src/migration/**/*.ts',
],
subscribers: [
'src/subscriber/**/*.ts',
],
cli: {
entitiesDir: 'src/entity',
migrationsDir: 'src/migration',
subscribersDir: 'src/subscriber',
},
},
];