I am new to Meteor. I downloaded a git repo of a friends project. I want to "initiate" the database, as the local folder is in the .gitignore.
In Rails, it would be something like rake db:setup which would grab all of the migrations and set up the database. How do I do something similar in Meteor? I also see that there are no db, lib, or local folders in the project.
My goal here is to seed the database, for which I am using node-mongo-seeds
Thank you!