Back to Recipes
david
3 recipes shared
Laravel Forge Default Deploy Script
This is the default recipe created when you spin up a server in Laravel Forge.
cd /home/forge/{{ sitefolder }}
git pull origin master
composer install
php artisan migrate
11 years ago
david
Install HHVM on Laravel Forge
This will install HHVM. The binary will be found in '/usr/local/bin'.
# Get all of the neccesary packages
wget -O - http://dl.hhvm.com/conf/hhvm.gpg.key | sudo apt-key add -
echo deb http://dl.hhvm.com/ubuntu trusty main | sudo tee /etc/apt/sources.list.d/hhvm.list
sudo apt-get update
11 years ago
david
Install MongoDB and MongoDB PHP5 Module
This short set of commands will install MongoDB and get it ready
# Install MongoDB
sudo apt-get install mongodb
# Now install the PHP5 MongoDB binary
11 years ago
david