Skip to content

Commit 4b71f38

Browse files
About to deploy
1 parent 3bd7822 commit 4b71f38

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

knexfile.js

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
// Update with your config settings.
2+
3+
/**
4+
* @type { Object.<string, import("knex").Knex.Config> }
5+
*/
6+
module.exports = {
7+
8+
development: {
9+
client: 'sqlite3',
10+
connection: {
11+
filename: './dev.sqlite3'
12+
}
13+
},
14+
15+
staging: {
16+
client: 'postgresql',
17+
connection: {
18+
database: 'my_db',
19+
user: 'username',
20+
password: 'password'
21+
},
22+
pool: {
23+
min: 2,
24+
max: 10
25+
},
26+
migrations: {
27+
tableName: 'knex_migrations'
28+
}
29+
},
30+
31+
production: {
32+
client: 'postgresql',
33+
connection: {
34+
database: 'my_db',
35+
user: 'username',
36+
password: 'password'
37+
},
38+
pool: {
39+
min: 2,
40+
max: 10
41+
},
42+
migrations: {
43+
tableName: 'knex_migrations'
44+
}
45+
}
46+
47+
};

0 commit comments

Comments
 (0)