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.
Matterwiki/knexfile.js

17 lines
432 B
JavaScript

module.exports = {
development: {
client: 'sqlite3',
connection: {
filename: "./db/matterwiki.sqlite"
},
useNullAsDefault: true,
debug: false
}
}
/*
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.
*/