Clone the project
git clone <project_url>Go to the project directory
cd <proejct>Copy env.example and set it up (DB_DATABASE, DB_USERNAME, DB_PASSWORD)
cp .env.example .envInstall dependencies
composer installInstall npm packages and build project
npm install && npm run buildGenerate keys
php artisan key:generateGenerate storage symlink
php artisan storage:linkRun migrations and seeders
php artisan migrate --seedRun server
php artisan serve