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 -d
docker-compose exec app composer install
To generate database:
docker-compose exec app php artisan migrate
To run tests:
docker-compose exec app ./vendor/bin/phpunit
To stop:
docker-compose stop