Install meteor.js
$ curl https://install.meteor.com | /bin/sh
Install Meteorite (Package manager for meteor)
$ sudo -H npm install -g meteorite
Clone this repository
$ git clone https://github.com/yoamomonstruos/ustwo-meteor.git
Navigate to directory and run meteor/meteorite
$ mrt
You may need run into a problem with the scss package for meteor. Something to do with running tests. If so, go into packages/scss
and comment out the following within package.js
Package.on_test(function (api) {
api.use(['test-helpers', 'tinytest']);
api.use(['spark']);
// api.add_files(['scss_tests.scss', 'scss_tests.js'], 'client');
});