We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Based on the principles presented at http://joshowens.me/environment-settings-and-security-with-meteor-js/, we should be using METEOR_SETTINGS instead of sending our settings.json through Git.
settings.json
I get an error, though:
> .scripts/test.js [[[[[ ~/network/src ]]]]] => Started proxy. => Errors prevented startup: While preparing to run: settings.json: file not found (settings file)
The text was updated successfully, but these errors were encountered:
Right now I am fixing it with the following:
test: pre: - echo $METEOR_SETTINGS > src/settings.json
I haven't tried a safer option to avoid problems when the settings.json already exists, therefore I am not creating a PR for this yet.
Sorry, something went wrong.
I think using Object.assign instead of require('util')._extend will fix this.
Object.assign
require('util')._extend
No branches or pull requests
Based on the principles presented at http://joshowens.me/environment-settings-and-security-with-meteor-js/, we should be using METEOR_SETTINGS instead of sending our
settings.json
through Git.I get an error, though:
The text was updated successfully, but these errors were encountered: