mirror of
https://github.com/songquanpeng/message-pusher.git
synced 2025-10-17 21:41:16 +08:00
23 lines
316 B
JavaScript
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",
|
|
},
|
|
},
|
|
};
|