Local Database Not Deployed With Meteor App (rawforce.meteor.com/)

I have recently deployed a meteor application I am developing for a client to meteor’s test servers, however, when I visit the url, it does not appear that the frontend (written in angular) is receiving any data. I may be wrong, but it appears that my local database was not uploaded along with the rest of the project.

The app works fine on my local machine, and I was under the impression that meteor stores the apps database in the .meteor folder. Does anyone have any ideas what the issue could be?

URL : http://rawforce.meteor.com/

Meteor doesn’t deploy your local development database. If you deploy your project for the first time, there will be an empty database for your project (with the collections you’ve defined).

Use Meteor.startup to put in some data on init.

I see, I suspected as much. Thanks man.