0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00
ghost/core/shared/models/knex_init.js

10 lines
234 B
JavaScript
Raw Normal View History

2013-05-19 20:17:21 +01:00
/*global require, module, process */
(function () {
"use strict";
var knex = require('knex');
knex.Initialize(require('../../../config').database[process.env.NODE_ENV || 'development']);
module.exports = knex;
}());