Fixed a small bug with the config being called before it was initialized

This commit is contained in:
Bram van der Veen 2015-08-10 16:46:29 +02:00
parent e9b31c0e1d
commit 4ed37bc46a

View file

@ -1,11 +1,13 @@
//lookup.js
var fs = require('fs');
var database = require('mongoskin').db('mongodb://' + config().database); //Initialize the database connection.
//Getting local variables stored in the configuration file.
//Getting local variables via the configuration file.
var config = require('./configuration');
var school_id = config().school_id;
//Getting first and third party modules
var fs = require('fs');
var database = require('mongoskin').db('mongodb://' + config().database); //Initialize the database connection.
//Function for looking through the database and finding entries related to the searchterm.
function get(req, res, next, search) {
var index = database.collection('index'); //Initialize the database collection.