mirror of
https://github.com/docker/awesome-compose.git
synced 2025-11-09 22:34:10 +01:00
8 lines
145 B
JavaScript
8 lines
145 B
JavaScript
const knex = require('knex');
|
|
const { database } = require('./config');
|
|
|
|
module.exports = knex({
|
|
client: 'mysql2',
|
|
connection: database,
|
|
});
|