Skip to content

Instantly share code, notes, and snippets.

@marlonassuncao
Last active December 11, 2015 17:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save marlonassuncao/62a6cda21a66a6b810f1 to your computer and use it in GitHub Desktop.
Save marlonassuncao/62a6cda21a66a6b810f1 to your computer and use it in GitHub Desktop.
My development settings on mac.
# Intall Homebrew
xcode-select --install
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Alias to open files by SublimeText
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/sublime
# Instalar Git, PHP 5.6, Composer, Mcrypt
brew install git
brew tap homebrew/dupes
brew tap homebrew/versions
brew tap homebrew/homebrew-php
brew install php56
brew install mcrypt
brew install php56-mcrypt
brew install composer
# Instala wget e Curl
brew install wget
brew install curl
# Ativar PHP 5.6
sbl /etc/apache2/httpd.conf
# Adicionar linha:
LoadModule php5_module /usr/local/Cellar/php56/5.6.16/libexec/apache2/libphp5.so
# Instalar Mysql
brew install mysql
# Start Mysql, instalação segura
mysql.server start
mysql_secure_installation
# Instalar oh my ZSH
curl -L http://install.ohmyz.sh | sh
# Instalar Nodejs, Gulp, Bower, Grunt
brew install nodejs
npm install -g gulp
npm install -g bower
npm install -g grunt-cli
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment