Skip to content

Instantly share code, notes, and snippets.

@degt
Last active December 17, 2015 03:48
Show Gist options
  • Save degt/5545655 to your computer and use it in GitHub Desktop.
Save degt/5545655 to your computer and use it in GitHub Desktop.
//Install laravel 4
git clone -b develop git://github.com/laravel/laravel.git .
//Run Server
//sudo php -S domain.dev:80
sudo php -S domain.dev:80 -t public/
php artisan serve
//Exec autoload
composer dump-auto
//Install dependences
composer install
//Create Migration
php artisan migrate:make create_users_table --table=users --create
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment