generated from BloomTech-Labs/template-be
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathknexfile.js
45 lines (41 loc) · 914 Bytes
/
knexfile.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
// Update with your config settings.
require("dotenv").config();
const pg = {
client: "pg",
connection: process.env.DATABASE_URL,
pool: {
min: 2,
max: 10
},
migrations: {
directory: "./database/migrations"
},
seeds: {
directory: "./database/seeds"
}
};
//Connection Object // comment to make up for forgetting you guys. sorry :(
const localConnection = {
host: process.env.DB_HOST,
port: process.env.DB_PORT,
database: process.env.DB,
user: process.env.USER || "postgres",
password: process.env.PASSWORD
};
module.exports = {
development: {
...pg,
connection: {
...localConnection
}
},
staging: pg,
production: pg,
testing: {
...pg,
connection: {
...localConnection,
database: process.env.DB_TEST || "postgres"
}
}
};