Created
January 15, 2015 16:06
-
-
Save BretFisher/756593f57c20e8a2f45a to your computer and use it in GitHub Desktop.
Meteor App Check for Ensuring You're Using --settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// lets complain to server command line if you forgot --settings when running Meteor | |
Meteor.startup(function () { | |
if (Meteor.isServer) { | |
if (Object.keys(Meteor.settings).length === 0) { | |
console.log("You forgot to run Meteor with --settings!"); | |
} | |
} | |
}); |
Here's another way to do the same thing :)
https://github.com/xolvio/Letterpress/blob/master/server/settings.js
Sorry to sound super daft, but why should you start Meteor apps with --settings? What are --settings and how are they best used? From what I gather it's a way of setting environment variables? Would love a noob guide to settings.
Settings are a way to have a per environment variable easily controller by the settings file. Think of things like s3 keys, etc.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's excellent. It's actually what we do in Node.js projects but I never looked at repeating it in Meteor. Thanks.