Last active
August 29, 2015 14:03
-
-
Save sabid/218055ec023ba5412bea to your computer and use it in GitHub Desktop.
Laravel New Instaltion from laravel.phar
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
$curl -O http://laravel.com/laravel.phar | |
$ chmod 755 laravel.phar | |
$ mv laravel.phar /usr/local/bin/ | |
$ sudo laravel new myl4site | |
Crafting application... | |
Application ready! Build something amazing. | |
$ ls myl4site | |
Permissions for laravel storage folder | |
sudo chmod -R 777 app/storage | |
Environment Configuration | |
Comandd in teminal: hostname | |
File: bootstrap/start.php | |
<?php | |
$env = $app->detectEnvironment(array( | |
'local' => array('your-machine-name'), | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment