mirror of
https://github.com/docker/awesome-compose.git
synced 2026-08-15 19:37:20 +02:00
59724f87a1
Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
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,
|
|
});
|