- Install Composer (https://getcomposer.org/)
- run
composer installin your application's root folder (downloads dependencies and puts them invendor/)
- edit
boostrap/start.phpand change in the detectEnvironment-callback'local' => array('WoodenDoors'),to include the name of your computer - edit
app/config/local/database.phpto match an existing mysql user and database on your machine (the datbase must be empty and match the collation in the database configuration) - start a command-prompt in your application's root folder
- execute
php artisan migrate(this sets the database up) - execute
php artisan db:seed(this fills the database with some data)