- clone the git
- composer update --no-scripts
- cp .env.example .env
- php artisan key:generate
use Illuminate\Support\Facades\Schema; Then add the following schema inside the boot function
schema::defaultStringLength(191); This will prevent from database error when migrated as the length will be 1024 and the mysql db gives default length 1000