You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
391 B
JavaScript
14 lines
391 B
JavaScript
module.exports = {
|
|
client: 'sqlite3',
|
|
connection: {
|
|
filename: "./db/matterwiki.sqlite"
|
|
},
|
|
useNullAsDefault: true
|
|
}
|
|
|
|
/*
|
|
The development object is the connection object for the development database.
|
|
We need to create more for different environments (production, testing, staging).
|
|
This environment is being used in the db.js file in the root directory. Check there.
|
|
*/
|