Clone this Repository
foo@bar:~$ git clone https://github.com/zafran72/Dist.git
Navigate to the directory
foo@bar:~$ cd Dist
Run Composer install
foo@bar:~/Dist$ composer install
Set package laravel/ui
foo@bar:~/Dist$ composer require laravel/ui --dev
Create new .env file with example .env.example
foo@bar:~/Dist$ copy .env.example .env
Generate new key for Laravel Application
foo@bar:~/Dist$ php artisan key:generate
Run migration
foo@bar:~/Dist$ php artisan migrate
Run the laravel app
foo@bar:~/Dist$ php artisan serve