andrewpietiladotcom/knexfile.js
Andrew Pietila dada829e6e Implement querying emails in mailbox.
Next step is auth implementation. Yay.
2025-01-21 22:14:02 -06:00

29 lines
458 B
JavaScript

// Update with your config settings.
/**
* @type { Object.<string, import("knex").Knex.Config> }
*/
module.exports = {
development: {
client: 'better-sqlite3',
connection: {
filename: './dev.sqlite3'
}
},
staging: {
client: 'better-sqlite3',
connection: {
filename: './staging.sqlite3'
}
},
production: {
client: 'better-sqlite3',
connection: {
filename: './production.sqlite3'
}
}
};