Reputation: 19829
I'm trying to find information about what kinds of configurations I can set in my settings.json. The docs mention this functionality but don't offer much more about how to use it and what kinds of things I can set.
http://docs.meteor.com/meteor_settings#meteor_settings
Upvotes: 1
Views: 634
Reputation: 19544
This is for your own settings, so you can set whatever you want to. This is useful when you want to differentiate between several app instances. For example, on development / staging you want to display some debug information, but hide it in production — then in Meteor.settings
you can set what environment you're using.
Upvotes: 2