Giter Club home page Giter Club logo

opentask's Introduction

Build Status Total Downloads Latest Stable Version License

##About Project - simple task manager API similar to Trello

##How to run composer install

Create .env file and set up the name of mysql db and mongodb

php artisan key:generate

required need to comment observers in Providers/AppServiceProvider.php before running seeders

php artisan migrate --seed

php artisan storage:link

php arisan serve

For asynchronous jobs you need to set QUEUE_CONNECTION=database in .env file and run

php artisan queue:work

You can import the documentation file in postman public /docs/collection.json or open docs in browser localhost/docs

Your task is to develop a REST API task application (like Trello).
You need to create user authorization.
The user can create and update boards.
The user can attach a task to each board.
The user can create custom labels, then he can attach multiple labels to the task.
The task must have a status (backlog, development, done, review).
We can filter tasks by labels, status.
The user can attach an image to the task (the image must be cropped into 2 formats: desktop, mobile). Image cropping must be asynchronous. (http://image.intervention.io/).
We need to keep logs in MongoDB table “logs” for each update of task (create, update, delete). Who made the change, when, and what was changed (use https://github.com/jenssegers/laravel-mongodb).

Use: Laravel 8.0, MySQL, MongoDB.
Use policies https://laravel.com/docs/7.x/authorization#creating-policies
Use api resources/collections - https://laravel.com/docs/7.x/eloquent-resources
Use pagination in index endpoints

Advanced (optional)

You should have 2 image drivers (for cropping), you should choose a second driver. In config we will have image_driver = ‘intervention’ or another driver. And we can change the image driver in env file. 
Task should have relation with 1 user. 
You should have an endpoint for boards statistics (BoardsCollection):
Total tasks. 
Total tasks which are done.
Progress in percentage. 
The best user of the week. (The user who has completed most of the tasks).

opentask's People

Contributors

vadykoo avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.