Skip to content

Files

Latest commit

 

History

History
44 lines (30 loc) · 650 Bytes

README.md

File metadata and controls

44 lines (30 loc) · 650 Bytes

AppService.L200.OSS.PHPLinux.2

This is an example to use with XDEBUG to show slow response in PHP.

Setting up application

Install PHP dependancies

composer install

Generate your APP key

php artisan key:generate

.env file

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

Seed Database

php artisan migrate