The backend part of the Task manager project using Python Flask to create a simple task list with an ability to view existing tasks, add new tasks, delete and mark a task as completed. Includes:
- core functionality to view, add, delete and update tasks
- validation for POST, PATCH and DELETE requests
- intergation tests for endpoints and error messages
- python -m venv venv
- source venv/bin/activate
- pip install -r requirements.txt
- flask run