I use the Figaro gem to set env variables for my apps hosted on Heroku.
To set the required env variables on production I use this:
$ figaro heroku:set -e production
Can I do something similar for my local environment? Right now I'm manually calling export foo=bar
for each variable.
Thanks in advance!