Commit Graph

22 Commits

Author SHA1 Message Date
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
96d1fabc4c fix: task card layout — key+priority on top, title on separate line
All checks were successful
Deploy Web Client / deploy (push) Successful in 36s
2026-02-15 20:51:33 +01:00
77d80d7726 fix: remove duplicate task key on cards
All checks were successful
Deploy Web Client / deploy (push) Successful in 35s
2026-02-15 20:41:25 +01:00
34db34c29c feat: remove landing page, add 'New project' to sidebar
All checks were successful
Deploy Web Client / deploy (push) Successful in 36s
- / redirects to first project or /projects/new
- Sidebar has '+ Новый проект' link at top
- /projects/new shows create modal
2026-02-15 20:36:03 +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
34f3f4b43a feat: task detail modal
All checks were successful
Deploy Web Client / deploy (push) Successful in 36s
- Click card → full task modal
- Edit title (click to edit)
- Edit description (markdown textarea)
- Change status (button group)
- Change priority (button group)
- Assign agent (dropdown)
- Toggle requires PR
- Delete task (with confirmation)
- Dependencies section (placeholder)
- Mobile responsive (stacked layout)
2026-02-15 20:23:39 +01:00
6ac4f4450b feat: mobile-responsive layout
All checks were successful
Deploy Web Client / deploy (push) Successful in 36s
- Sidebar: burger menu on mobile, slide-in overlay
- Kanban: tab selector + vertical cards on mobile
- Move task buttons (← →) on mobile instead of drag
- Login: full-width on small screens
- Header: padding for burger button
2026-02-15 19:48:23 +01:00
d7a9bc7a59 fix: gitignore pycache
All checks were successful
Deploy Web Client / deploy (push) Successful in 36s
2026-02-15 19:45:00 +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
920eb99a6e feat: create project from UI (modal form)
All checks were successful
Deploy Web Client / deploy (push) Successful in 36s
2026-02-15 19:32:43 +01:00
7acd0555e3 perf: production mode + build in CI
All checks were successful
Deploy Web Client / deploy (push) Successful in 37s
- npm start instead of npm run dev
- CI does npm run build before restart
- Pages load in ~50ms instead of ~2s
2026-02-15 19:29:50 +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
747ad8d7a8 fix: set auth cookie server-side for reliable SSR auth
All checks were successful
Deploy Web Client / deploy (push) Successful in 12s
2026-02-15 19:23:40 +01:00
78350cfe4a ci: test deploy
All checks were successful
Deploy Web Client / deploy (push) Successful in 11s
2026-02-15 19:12:28 +01:00
d871c360ce ci: trigger deploy
Some checks failed
Deploy Web Client / deploy (push) Failing after 3s
2026-02-15 19:09:29 +01:00
4ac7e79a8a ci: auto-deploy on push (Gitea Actions)
Some checks are pending
Deploy Web Client / deploy (push) Waiting to run
2026-02-15 19:08:12 +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
7187cbcf61 feat: simple login/password auth (cookie-based)
- Login page with form
- Middleware redirects unauthenticated to /login
- Cookie session (7 days)
- Credentials via AUTH_USER/AUTH_PASS env vars
- Default: admin/teamboard
2026-02-15 19:03:28 +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
a04c9d7bb3 Initial frontend readme 2026-02-15 11:57:24 +01:00