Files
message-pusher/knexfile.js
2020-09-13 23:50:16 +08:00

23 lines
316 B
JavaScript

module.exports = {
development: {
client: "sqlite3",
connection: {
filename: "./data.db",
},
},
staging: {
client: "sqlite3",
connection: {
filename: "./data.db",
},
},
production: {
client: "sqlite3",
connection: {
filename: "./data.db",
},
},
};