Uma simples API rest similar ao do Twitter para treinar e estudar.
Clone this repo and run commands in the order below:
composer install
cp .env.example .env # And edit the values
touch database/database.sqlite
php artisan migrate --seed
Then start the server:
php artisan serve
Once the server is running, you can read the API documentation in /docs.
To run tests, run the following command:
php artisan test
# php artisan test --stop-on-failure
# php artisan test --filter GetUserTest