forked from map-egypt/api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknexfile.js
More file actions
36 lines (36 loc) · 788 Bytes
/
knexfile.js
File metadata and controls
36 lines (36 loc) · 788 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
36
var path = require('path');
// Update with your config settings.
module.exports = {
test: {
client: 'pg',
connection: 'postgres://localhost/map_egypt_test',
migrations: {
directory: path.join(__dirname, '/migrations')
},
seeds: {
directory: path.join(__dirname, '/seeds')
}
},
development: {
client: 'pg',
//connection: process.env.DATABASE_URL,
connection: {
host: process.env.DB_HOST,
user: process.env.DB_USER,
port: process.env.DB_PORT,
password: process.env.DB_PASS,
database: process.env.DB_NAME
},
migrations: {
tableName: 'migrations'
},
debug: true
},
production: {
client: 'pg',
connection: process.env.DATABASE_URL,
migrations: {
tableName: 'migrations'
}
}
};