talentql api
1.0.0
A REST API which allows users create todos
This project was built with Laravel and MySQL.
To run the API, you must have:
Create an .env
file using the command. You can use this config or change it for your purposes.
$ cp .env.example .env
Configure environment variables in .env
for dev environment based on your MYSQL database configuration
DB_CONNECTION=
DB_HOST=
DB_PORT=
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
API End points and documentation can be found at: Postman Documentation.
Install the dependencies and start the server
$ composer install
$ php artisan key:generate
$ php artisan migrate
$ php artisan serve
You should be able to visit your app at http://localhost:8000
To run integration tests:
$ composer test