Simple Flask Kanban Board for managing your to-do list
- Deletion and addition of new tasks
- Switch tasks between three categories: to-do, doing and done
- Color coding of overdue tasks (red)
- Calendar showing the due date of each task
- Drag and Drop tasks to change its due date
- Color coding of different task categories (blue: to-do, red: doing, green: done)
Install necessary dependencies
$ pip install -r requirements.txt
Start flask server
$ python routes.py
Your Kanban board should be up and running at http://127.0.0.1:5000/
On the project root directory, run
$ python test_basic.py