This is an example to use with XDEBUG to show slow response in PHP.
composer install
php artisan key:generate
You will need a database to connect to your application.
Copy the .env.example file to .env
cp .env.example .env
Insert your database info inside your .env file
DB_CONNECTION=mysql
DB_HOST=mydbhost.mysql.database.azure.com
DB_PORT=3306
DB_DATABASE=mydbname
DB_USERNAME=mydbuser
DB_PASSWORD=mydbpass
php artisan migrate