forked from rommelcarneiro/node-basic-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknexfile.js
More file actions
32 lines (30 loc) · 720 Bytes
/
knexfile.js
File metadata and controls
32 lines (30 loc) · 720 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
require('dotenv').config()
module.exports = {
development: {
client: 'pg',
connection: {
host: process.env.DB_HOST || 'localhost',
port: process.env.DB_PORT || 5432,
database: process.env.DB_NAME || 'produtos_db',
user: process.env.DB_USER || 'postgres',
password: process.env.DB_PASSWORD || 'postgres'
},
migrations: {
directory: './database/migrations'
},
seeds: {
directory: './database/seeds'
}
},
production: {
client: 'pg',
connection: process.env.DATABASE_URL,
migrations: {
directory: './database/migrations'
},
seeds: {
directory: './database/seeds'
},
ssl: { rejectUnauthorized: false }
}
}