I've taken the example Leaderboard meteor app (http://meteor.com/examples/leaderboard) and used Demeteorizer to convert it to a simple Node.JS app (https://github.com/onmodulus/demeteorizer).
I'm trying to use an external mongohq for my database, and I followed the instructions at http://ondrej-kvasnovsky.blogspot.com/2013/05/how-to-deploy-meteor-on-heroku-with.html to connect the two and then deployed it.
The issue I'm facing is that the code is able to connect to the database and populate it with values (as I can see the new collection in MongoHQ along with the data in it), but when I go to the herokuapp, it doesn't read the data. So it seems that the isServer content works, but the isClient isn't able to pick up the data from the db.
The live site is at: http://qawsedrf.herokuapp.com/
Any idea why this is happening??
Help much appreciated :)