##Windows users: - Download wamp: http://www.wampserver.com/en/ - Download and extract cmder mini: https://github.com/cmderdev/cmder/releases/download/v1.1.4.1/cmder_mini.zip - Update windows environment variable path to point to your php install folder (inside wamp installation dir) http://www.computerhope.com/issues/ch000549.htm - cmder will be refered as console ##Everybody (windows users continue here): - Download composer https://getcomposer.org/download/ - Pull Laravel/php project from git provider - Open the console and cd your project root directory - Run `composer install` or ```php composer.phar install``` - Run `php artisan migrate` - Run `php artisan db:seed` to run seeder, if any.