start someones laravel project

Solutions on MaxInterview for start someones laravel project by the best coders in the world

showing results for - "start someones laravel project"
Fabiana
24 Feb 2016
1 1. composer update --no-scripts  or composer install
2 2. php artisan key:generate 
3 3. rename example.env to .env
4 4. Change database credentials, set debug mode! Change app url
5 4. php artisan migrate(make sure u have the database running in the server)
6 5. php artisan config:clear
7 6. you are good to go!
8