Jesús Manuel García Torres
Software Engineer in Venzee

$ yum install curl-devel expat-devel gettext-devel \
openssl-devel zlib-devel $ apt-get install libcurl4-gnutls-dev libexpat1-dev gettext \
libz-dev $ tar -zxf git-1.6.0.5.tar.gz
$ cd git-1.6.0.5
$ make prefix=/usr/local all
$ sudo make prefix=/usr/local install $ yum install git-core
$ apt-get install git git config --global user.name="Jesus"
git config --global user.email = "garciatjm@gmail.com"
# Start an HTTP server from a directory, optionally specifyingthe portfunction server() { local port="${1:-8000}" open "http://localhost:${port}/"python SimpleHTTPServer "$port" }

yo webapp # scaffold out a skeleton web app project
bower install underscore # install a dependency for your project
grunt # build the application for deployment npm install -g generator-angular # install generator
yo angular # scaffold out a AngularJS project
bower install angular-ui # install a dependency for your project
grunt test # test your app
grunt server # preview your app
grunt # build the application for deployment By Jesús Manuel García Torres