The Meteor Settings File
Explore how to configure your Meteor.js applications using the settings file. Understand how to store keys and data in JSON format, differentiate between public and private settings, and learn best practices for loading settings during development and production environments.
We'll cover the following...
We'll cover the following...
The settings file
Meteor provides a way to store information such as keys and configuration data in a JSON file. This JSON file is added to the root of our project. We can call the file whatever we want, but the convention is that it’s usually named settings.json.
A JSON file is a human-readable file that ends in a .JSON file extension. ...