Commit Graph

9 Commits

Author SHA1 Message Date
7185a50f57 v0.2.0: updated for new Tracker API
Some checks failed
Deploy Web Client / deploy (push) Failing after 9s
- api.ts: Member, Unified Message, Steps, new types
- ws.ts: auth.ok handling, project.subscribe, chat.send
- KanbanBoard: new statuses (backlog/todo/in_progress/in_review/done)
- TaskModal: steps checklist, comments (unified messages), member select
- ChatPanel: unified messages, WS events
- BFF: all new endpoints (members, messages, steps, task actions)
- BFF ws_proxy: token-based auth to tracker
2026-02-22 17:40:13 +01:00
b89969a7a0 feat: chat panel above kanban, WS client, chat API
All checks were successful
Deploy Web Client / deploy (push) Successful in 36s
2026-02-15 23:07:14 +01:00
ec2e8502f8 feat: show task keys (TEA-1) on cards and modal
All checks were successful
Deploy Web Client / deploy (push) Successful in 37s
2026-02-15 20:30:21 +01:00
2f1778c821 feat: BFF (Python FastAPI) — proxy to Tracker with JWT auth
Some checks failed
Deploy Web Client / deploy (push) Has been cancelled
- BFF on port 8200: auth + proxy to tracker
- All /api/* routes go through BFF
- WebSocket proxy with JWT auth
- Tracker no longer exposed to internet
- Logging on all requests
- Removed Next.js API routes for auth (BFF handles it)
2026-02-15 19:44:55 +01:00
e8a7852986 fix: proxy API through nginx, add client-side logging
All checks were successful
Deploy Web Client / deploy (push) Successful in 35s
2026-02-15 19:36:45 +01:00
5ce87e088b refactor: pure JWT auth, no cookies
All checks were successful
Deploy Web Client / deploy (push) Successful in 12s
- Remove middleware (no SSR auth check)
- AuthGuard component checks localStorage token
- Protected route group (protected) wraps all pages
- Login page is public
- All API calls use Authorization: Bearer header
2026-02-15 19:26:25 +01:00
e655bba89b feat: JWT token auth (local + future Authentik)
- JWT via jose (HS256, 7d expiry)
- Login API: POST /api/auth/login → returns token
- Verify API: GET /api/auth/me
- Middleware checks Bearer header or cookie
- Token stored in localStorage + cookie (for SSR)
- Authentik button (disabled, placeholder)
- Auth headers auto-added to API requests
2026-02-15 19:05:37 +01:00
a1b58ba916 fix: simplify API_BASE, remove Docker SSR workaround 2026-02-15 18:58:23 +01:00
1d998dca55 feat: Next.js frontend — kanban board, sidebar, dark theme
- Kanban with drag-and-drop (5 columns)
- Project sidebar navigation
- API client (projects, tasks, agents, labels)
- Tailwind CSS dark theme
- Docker support, SSR with internal API URL
- Port 3100 (3000 occupied by Gitea)
2026-02-15 18:52:49 +01:00