Skip to content

Instantly share code, notes, and snippets.

@kennethkoontz
Created November 15, 2012 01:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kennethkoontz/4076065 to your computer and use it in GitHub Desktop.
Save kennethkoontz/4076065 to your computer and use it in GitHub Desktop.
app
var express = require('express');
var routes = require('./routes');
var auth = require('./routes/auth');
var feed = require('./routes/services/feed');
var profiles = require('./routes/profiles');
var http = require('http');
var path = require('path');
var app = express();
var RedisStore = require('connect-redis')(express);
var Db = require('./lib/dwibbles-db');
var db = new Db('unified');
console.log(db.create);
exports.db = db;
.
.
.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment