jillo-bot/knexfile.js

24 lines
429 B
JavaScript

// Update with your config settings.
/**
* @type { Object.<string, import("knex").Knex.Config> }
*/
module.exports = {
development: {
client: 'sqlite3',
connection: {
filename: './jillo.sqlite'
},
useNullAsDefault: true,
},
production: {
// meh who needs postgres for now lole
client: 'sqlite3',
connection: {
filename: './jillo.sqlite'
},
useNullAsDefault: true,
}
};