We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bd7822 commit 4b71f38Copy full SHA for 4b71f38
knexfile.js
@@ -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
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
+};
0 commit comments