Gist
This is a script to provide db shell for generator-angular-fullstack with mongoose.
It loads all your models and their schemas as defined with mongoose along with your config and establishes a databse connection to mongodb as defined by the config.
After loading the shell you can run mongoose queries on your models like
var users = User.find(function(e,d){
console.log(d);
});