This file contains hidden or 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
########################### | |
# Configuration | |
########################### | |
# use 256 term for pretty colors | |
set -g default-terminal "screen-256color" | |
# increase scroll-back history | |
set -g history-limit 5000 |
This file contains hidden or 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
# install dependencies | |
sudo apt-get update && sudo apt-get upgrade | |
sudo apt-get install git curl nodejs nodejs-legacy npm ruby-sass php php-pgsql php-json php-curl php-mcrypt php-mbstring php-gd postgresql phppgadmin phpunit -y | |
# enable mcrypt and restart apache2 | |
sudo phpenmod mcrypt | |
# enable mod_rewrite | |
sudo a2enmod rewrite |