Skip to content

Instantly share code, notes, and snippets.

@johndavedecano
Last active February 23, 2016 02:54
Show Gist options
  • Save johndavedecano/84b96ef7cb55b518542a to your computer and use it in GitHub Desktop.
Save johndavedecano/84b96ef7cb55b518542a to your computer and use it in GitHub Desktop.
Easily Setup your LEMP Stack for Laravel Development
sudo apt-get install npm
sudo apt-get install git
sudo apt-get install nodejs
sudo apt-get install mysql-server
sudo apt-get install nginx
sudo apt-get install php5-fpm
sudo apt-get install php5-curl php5-mcrypt php5-mysql php5-cli
sudo php5endmod mycrypt
sudo npm install -g gulp
sudo npm install -g bower
sudo npm install -g n
sudo ln -s /usr/bin/nodejs /usr/bin/node
curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
sudo service nginx restart
sudo service nginx php5-fpm restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment