Skip to content

Instantly share code, notes, and snippets.

View mdmartinez's full-sized avatar
🎯
Focusing

Daniel Martinez mdmartinez

🎯
Focusing
View GitHub Profile
@mdmartinez
mdmartinez / Set ENV variables OSX
Created July 8, 2015 12:51
Set ENV variables OSX
Locally
export variable=value
Globally
To set an environment variable, enter the following command:
launchctl setenv variable "value"
To find out if an environment variable is set, use the following command:
@mdmartinez
mdmartinez / Heroku Commands
Created April 20, 2015 19:03
Heroku Commands
# runs console for AR queries
heroku run console --app gamefinder
# runs psql environment
heroku pg:psql -a gamefinder
# gives you config environment variables
heroku config -a gamefinder
# resets database on heroku