Files
coms3011a-lab1/README.md

21 lines
794 B
Markdown

# Planner Danner
Planner Danner is a local-first COMS3011A Lab 1 todo application built with Next.js and SQLite. It runs on a user's machine and persists task data in a local SQLite database.
## Features
- Create tasks with title, description, due date, and topic.
- Edit task details and move tasks through `Todo`, `In-Progress`, and `Complete`.
- Archive tasks without deleting them.
- View tasks as a three-column board or as a list.
- Sort tasks by topic, status, due date, or newest first.
- Show overdue tasks as a derived visual indication.
- Persist task data across page reloads and application restarts.
## Documentation
- [Third-Party Code](docs/THIRD_PARTY_CODE.md)
- [Database Design](docs/DATABASE_DESIGN.md)
- [Running It](docs/RUNNING_IT.md)
- [AI Usage](docs/AI_USAGE.md)