I'm adding security for my API keys with the Meteor package dotenv: https://github.com/okgrow/meteor-dotenv as per instructions, I: 1. created a file named ".env" in my root 2. entered two keys in the style "THIS_KEY=BLAH12345" in the file 3. made a meteor call function returning process.env.THIS_KEY for the client side to use.
I'm getting Referenceerror: process.env is not defined. For just plain node there are a lot of answers out there, but not so for Meteor. Did I name my file incorrectly? Need to use a Meteor command to activate something?