You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
336 B

12 months ago
  1. const knex = require('knex')({
  2. client:'mysql2',
  3. connection: {
  4. host: appConfig.database.host,
  5. user: appConfig.database.username,
  6. password: appConfig.database.password,
  7. port: appConfig.database.port,
  8. database: appConfig.database.database,
  9. },
  10. debug : false
  11. })
  12. module.exports = knex;