Last active
September 22, 2015 14:34
-
-
Save inlikealion/41c0317e1eb464d71783 to your computer and use it in GitHub Desktop.
Setup for Torque UI Developers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# UI Development Setup | |
## Applications | |
+ [iTerm](https://iterm2.com/) | |
- Zsh instead of Bash via [Oh My Zsh](http://ohmyz.sh/) | |
+ [Atom](https://atom.io/) | |
## Environments | |
### Xcode | |
+ Install Command Line Tools | |
### [Homebrew](http://brew.sh/) | |
+ imagemagick | |
+ redis | |
### [NVM](https://github.com/creationix/nvm) | |
+ v0.10.39 (set as default): `nvm install 0.10 && nvm alias default 0.10.39` | |
+ v0.12.x (for recent OSS projects like Polymer, Web Starter Kit, etc) | |
+ v4.x (for newest) | |
### npm (be sure to install these also within node v0.10.x for our legacy sites) | |
+ grunt: `npm -g install grunt-cli` | |
+ gulp: `npm -g install gulp` | |
+ bower: `npm -g install bower` | |
+ yeoman: `npm -g install yo` | |
### [rvm](https://rvm.io/) | |
+ ruby-2.1.1: `rvm install 2.1.1` | |
+ ruby-2.2.0: `rvm install 2.2.0` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment