Initial React Kanban app with Docker

This commit is contained in:
2026-03-11 17:23:32 +00:00
commit 1b97b8cfe1
12 changed files with 2075 additions and 0 deletions

43
README.md Normal file
View File

@@ -0,0 +1,43 @@
# 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`, and `Done`
- Delete tasks
- Persist all data in browser `localStorage` (no backend)
## Run locally
```bash
npm install
npm run dev
```
Open `http://localhost:5173`.
## Build
```bash
npm run build
npm run preview
```
## Run with Docker
### Docker Compose
```bash
docker compose up --build
```
Open `http://localhost:8080`.
### Plain Docker
```bash
docker build -t kanban-app .
docker run --rm -p 8080:80 kanban-app
```