mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
10 lines
No EOL
234 B
JavaScript
10 lines
No EOL
234 B
JavaScript
/*global require, module, process */
|
|
(function () {
|
|
"use strict";
|
|
|
|
var knex = require('knex');
|
|
|
|
knex.Initialize(require('../../../config').database[process.env.NODE_ENV || 'development']);
|
|
|
|
module.exports = knex;
|
|
}()); |