Skip to content

Latest commit

 

History

History
61 lines (43 loc) · 3.57 KB

File metadata and controls

61 lines (43 loc) · 3.57 KB

Computer Setup

Set up your computer with the following tools: A programmer's text editor, Node.js, MongoDB, and Redis.

Mac OS:

  • Homebrew http://brew.sh Note: the instructions are at the end of the web page. Run brew update && brew doctor if you already have homebrew but haven't used it in a while.

  • Node.js

    • brew install node
    • Install some commonly used packages with npm: npm -g install grunt-cli jshint
  • MongoDB

    • brew install mongodb
    • Follow the directions that homebrew tells you. You can always do brew info mongo if you let the instructions scroll off the screen (tsk tsk, you need to read the terminal messages!)
    • you can start mongo with launchctl start homebrew.mxcl.mongodb
    • you can stop mongo with launchctl stop homebrew.mxcl.mongodb
  • Redis

    • brew install redis
    • Follow the directions that homebrew tells you. You can always do brew info redis
    • you can start redis with launchctl start homebrew.mxcl.redis
    • you can stop redis with launchctl stop homebrew.mxcl.redis
  • Heroku Toolbelt

    • brew install heroku-toolbelt

Ubuntu: