-
Notifications
You must be signed in to change notification settings - Fork 0
/
ormconfig.js
67 lines (64 loc) · 1.53 KB
/
ormconfig.js
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
62
63
64
65
66
67
require("dotenv/config");
const devConfig = [
{
name: 'default',
type: 'postgres',
host: process.env.POSTGRES_HOST,
port: 5432,
username: process.env.POSTGRES_USER,
password: process.env.POSTGRES_PASS,
database: process.env.POSTGRES_NAME,
entities: [
'./src/modules/**/infra/typeorm/entities/*.ts'
],
migrations: [
'./src/shared/infra/typeorm/migrations/*.ts'
],
cli: {
migrationsDir: './src/shared/infra/typeorm/migrations',
},
},
{
name: 'mongo',
type: 'mongodb',
host: process.env.MONGO_HOST,
port: 27017,
database: process.env.MONGO_NAME,
useUnifiedTopology: true,
entities: [
'./src/modules/**/infra/typeorm/schemas/*.ts'
]
}
];
const prodConfig = [
{
name: 'default',
type: 'postgres',
host: process.env.POSTGRES_HOST,
port: 5432,
username: process.env.POSTGRES_USER,
password: process.env.POSTGRES_PASS,
database: process.env.POSTGRES_NAME,
entities: [
'./dist/modules/**/infra/typeorm/entities/*.js'
],
migrations: [
'./dist/shared/infra/typeorm/migrations/*.js'
],
cli: {
migrationsDir: './dist/shared/infra/typeorm/migrations',
},
},
{
name: 'mongo',
type: 'mongodb',
host: process.env.MONGO_HOST,
port: 27017,
database: process.env.MONGO_NAME,
useUnifiedTopology: true,
entities: [
'./dist/modules/**/infra/typeorm/schemas/*.js'
]
}
];
module.exports = process.env.NODE_ENV === 'development' ? devConfig : prodConfig;