-
Notifications
You must be signed in to change notification settings - Fork 0
/
knexfile.ts
42 lines (38 loc) · 863 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
import type { Knex } from 'knex';
// eslint-disable-next-line @typescript-eslint/no-var-requires
require('dotenv').config();
const client = 'postgresql';
const migrations = { tableName: 'knex_migrations' };
const seeds = { directory: './seeds/' };
const config: { [key: string]: Knex.Config } = {
development: {
client,
connection: {
host: process.env.DB_HOST,
database: process.env.DB_NAME,
user: process.env.DB_USER,
password: process.env.DB_PASS,
},
pool: {
min: 1,
max: 1,
},
migrations,
seeds,
},
production: {
client,
connection: {
host: process.env.DB_HOST,
database: process.env.DB_NAME,
user: process.env.DB_USER,
password: process.env.DB_PASS,
},
pool: {
min: 1,
max: 1,
},
migrations,
},
};
module.exports = config;