Skip to content

Instantly share code, notes, and snippets.

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