The Barta app I've developed is a social networking app
step 1: clone repo
https://github.com/sayful1411/barta
step 2: go to barta
cd barta
step 3: edit .env.example to .env
step 4: run composer install
composer install
step 5: generate a new key
php artisan key:generate
step 6: create a new database
step 7: setup .env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=barta
DB_USERNAME=root
DB_PASSWORD=
step 8: run migration
php artisan migrate --seed
step 9: run project
php artisan serve
step 10: run queue
php artisan queue:work