-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathknexfile.js
41 lines (37 loc) · 1.03 KB
/
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
require('dotenv').config();
const path = require('path');
const migrationsDirectory = path.join(__dirname, 'db/migrations');
const seedsDirectory = path.join(__dirname, '/db/seeds');
/*
We'll use environment variables to set the Postgres username and password
so we don't share that information online.
When we deploy in "production", we'll provide a PG_CONNECTION_STRING
*/
module.exports = {
development: {
client: 'pg',
connection: process.env.PG_CONNECTION_STRING || {
host: process.env.PG_HOST || '127.0.0.1',
port: process.env.PG_PORT || 5432,
user: process.env.PG_USER || 'postgres',
password: process.env.PG_PASS || 'postgres',
database: process.env.PG_DB || 'postgres',
},
migrations: {
directory: migrationsDirectory,
},
seeds: {
directory: seedsDirectory,
},
},
production: {
client: 'pg',
connection: process.env.PG_CONNECTION_STRING,
migrations: {
directory: migrationsDirectory,
},
seeds: {
directory: seedsDirectory,
},
},
};