0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00
ghost/core/shared/models/knex_init.js
2013-05-19 20:17:21 +01:00

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;
}());