-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathormconfig.ts
More file actions
35 lines (31 loc) · 923 Bytes
/
ormconfig.ts
File metadata and controls
35 lines (31 loc) · 923 Bytes
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
require("dotenv").config({
path: process.env.NODE_ENV === "test" ? ".env.test" : ".env"
})
let TEST_ENV = {};
if(process.env.NODE_ENV === "test") {
TEST_ENV = { // properties to Test Enviroment
"dropSchema": true, // So, let the dropSchema: true because this will delete your data after the tests.
"logging": false,
"synchroize": true,
"migrationsRun": true, // migrationsRun: true to automatically run migrations before the tests.
}
}
module.exports = {
"type": "postgres",
"host": process.env.DB_HOST,
"port": process.env.DB_PORT,
"username": process.env.DB_USER,
"password": process.env.DB_PASS,
"database": process.env.DB_NAME,
...TEST_ENV,
"entities": [
"src/app/models/*.ts"
],
"migrations": [
"src/database/migrations/*.ts"
],
"cli": {
//"entitiesDir": 'src/app/models',
"migrationsDir": "src/database/migrations"
}
}