This is an basic Laravel project, with capabilities like JWT (Json Web Token) using tymondesigns/jwt-auth lib to control this.
This project is make to run with Docker or direct with your self structure. The docker images is from project sustained by CODECASTS images to PHP+NGINX. To run this project:
docker-compose up -ddocker-compose exec app composer installTo generate database:
docker-compose exec app php artisan migrateTo run tests:
docker-compose exec app ./vendor/bin/phpunitTo stop:
docker-compose stop