This is a simple task management API built with Flask. Your job is to:
- Set up the repo correctly using Git
- Add new features using AI assistance
- Find and fix bugs in the existing code
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Run the app
python -m app.main
# Run tests
pytest tests/ -vGET /health- Health checkPOST /users- Create a userGET /users/<email>- Get a user
POST /tasks- Create a taskGET /tasks- List/filter tasks
See ASSESSMENT_INSTRUCTIONS.md for detailed requirements.