-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathknexfile.ts
51 lines (44 loc) · 964 Bytes
/
knexfile.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
// TODO(snorbi07): read the configurations from an env file(dotenv)
const dbClientType = 'postgresql';
const dbConnectionUrl = 'postgres://6ar:6arpassword@localhost:5432/6ar';
const dbPoolMin = 2;
const dbPoolMax = 10;
const migrations = {
extension: 'ts',
directory: './src/persistence/migrations',
tableName: '6ar_migrations'
};
const seeds = {
directory: './src/persistence/seeds'
};
module.exports = {
development: {
client: dbClientType,
connection: dbConnectionUrl,
pool: {
min: dbPoolMin,
max: dbPoolMax
},
migrations: migrations,
seeds: seeds
},
staging: {
client: dbClientType,
connection: dbConnectionUrl,
pool: {
min: dbPoolMin,
max: dbPoolMax
},
migrations: migrations,
seeds: seeds
},
production: {
client: dbClientType,
connection: dbConnectionUrl,
pool: {
min: dbPoolMin,
max: dbPoolMax
},
migrations: migrations
}
};