🚧 save work

This commit is contained in:
Song
2020-09-13 23:50:16 +08:00
parent 24a91b6013
commit 615ff93d6b
13 changed files with 191 additions and 42 deletions
+22
View File
@@ -0,0 +1,22 @@
module.exports = {
development: {
client: "sqlite3",
connection: {
filename: "./data.db",
},
},
staging: {
client: "sqlite3",
connection: {
filename: "./data.db",
},
},
production: {
client: "sqlite3",
connection: {
filename: "./data.db",
},
},
};