The Meteor Settings File
Learn about the MeteorJS settings file and understand its sections.
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. It normally consists of an ...