14 lines
272 B
JavaScript
14 lines
272 B
JavaScript
|
const path = require("path")
|
||
|
module.exports = {
|
||
|
production: {
|
||
|
database: path.join(__dirname, "..", "drift.sqlite"),
|
||
|
dialect: "sqlite"
|
||
|
},
|
||
|
development: {
|
||
|
database: path.join(__dirname, "..", "drift.sqlite"),
|
||
|
dialect: "sqlite",
|
||
|
debug: true,
|
||
|
logging: true
|
||
|
}
|
||
|
}
|