-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknexfile.ts
More file actions
36 lines (35 loc) · 779 Bytes
/
knexfile.ts
File metadata and controls
36 lines (35 loc) · 779 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
export = {
development: {
client: 'pg',
connection: {
database: process.env.DATABASE_NAME || 'hacker_news_stories',
user: process.env.POSTGRES_USER || 'hacker_news_stories',
password: process.env.POSTGRES_PASSWORD || 'hacker_news_stories',
port: process.env.POSTGRES_PORT || 5432,
host: process.env.POSTGRES_HOST || 'localhost'
},
migrations: {
directory: './src/migrations'
},
seeds: {
directory: './seeds'
},
},
production: {
client: 'pg',
connection: process.env.DATABASE_URL,
migrations: {
directory: './src/migrations'
},
seeds: {
directory: './seeds'
},
ssl: {
rejectUnauthorized: false
},
pool: {
min: 2,
max: 10
}
}
};