This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Ok, everything's ready. Here comes Meteor! | |
| [[[[[ ~/Desktop/mymeteorapp ]]]]] | |
| => Started proxy. | |
| => Started MongoDB. | |
| I20140718-11:07:16.323(2)? Jasmine-Unit is loaded | |
| I20140718-11:07:16.398(2)? [velocity] PWD /Users/mango/Desktop/mymeteorapp | |
| I20140718-11:07:16.460(2)? Check for test package configs... [ 'packages/blaze-layout/examples/simple/smart.json', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| this.route('home',{ | |
| path: '/:_domain', | |
| data: function(){ | |
| if(domains.find().count() <= 0) | |
| { | |
| Router.go('register'); | |
| } | |
| return {'name':this.params._domain}; | |
| }, | |
| waitOn: function(){ |
NewerOlder