Before of all, you need configure your PC to be able to run laravel applications, for this you can do read laravel documentation
https://laravel.com/docs/5.8
Clone the file ".end.example" with name ".env" (this file can be find in root location of this aplication).
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
DB_DATABASE=cronos
DB_USERNAME=root
DB_PASSWORD=
php artisan migrate --seed // Command to run migrations and populate the database with one user to tests
php artisan key:generate
* usuário: [email protected]
* Senha: secret
* php artisan route:list //To show all routes of the API
* php artisan migrate:refresh --seed // Reload all migrations running all seeders to populate the database
app/Http/Crontrollers/Api - you will find all of the controllers of the application;
app/Model/Api - you will find all of the models od the application;
route/api - you will find all of the routes of the api;
database/migrations - you can see all migrations;
* database/postman - you will find a postman file to import to your postman.