Created
January 20, 2014 01:14
-
-
Save trevorgreenleaf/8513341 to your computer and use it in GitHub Desktop.
Installing Laravel on Media Temple GS
This file contains 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
Go into domain folder | |
transfer or run a new install of laravel | |
git clone https://github.com/laravel/laravel example.com && cd example.com | |
// get composer | |
curl -sS https://getcomposer.org/installer | php -d allow_url_fopen=On | |
// install composer | |
php -d allow_url_fopen=On composer.phar install | |
// generate a key for laravel | |
php artisan key:generate | |
// change the path of the public to html | |
mv public html | |
Update the bootstrap paths.php to point to html instead of public |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment