Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 751 Bytes

README.md

File metadata and controls

38 lines (27 loc) · 751 Bytes

tombates.co

Running locally

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

Troubleshoot

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');
});