Kanban Task Manager (React)
Simple client-side Kanban app built with React + Vite.
Features
- Create tasks with title and description
- Move tasks across
To Do,In Progress, andDone - Delete tasks
- Persist all data in browser
localStorage(no backend)
Run locally
npm install
npm run dev
Open http://localhost:5173.
Build
npm run build
npm run preview
Run with Docker
Docker Compose
docker compose up --build
Open http://localhost:8080.
Plain Docker
docker build -t kanban-app .
docker run --rm -p 8080:80 kanban-app
Description
Languages
JavaScript
67.4%
CSS
24.8%
HTML
4.5%
Dockerfile
3.3%