Skip to content

Instantly share code, notes, and snippets.

@johnhamelink
Created May 7, 2011 17:58
Show Gist options
  • Save johnhamelink/960693 to your computer and use it in GitHub Desktop.
Save johnhamelink/960693 to your computer and use it in GitHub Desktop.
bootstrap
var fs = require('fs'),
m = require('mongoose');
fs.readdirSync(__dirname).forEach(function(filename) {
var schemaName = filename.replace(/\.js$/, ''),
Schema = require('./' + schemaName);
module.exports[schemaName] = m.model(schemaName, Schema);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment