| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Modern, accessible issue tracking application with Kanban boards, backlog management, and advanced search capabilities.
Clone the repository
git clone <repository-url>
cd issue-trackerStart the backend
cd backend
./gradlew bootRunBackend runs on http://localhost:8080
Start the frontend
cd frontend
npm install
npm run devFrontend runs on http://localhost:3000
Run tests
cd frontend
npm test # Unit tests
npm run cypress:open # E2E testsfrontend/features/ ├── board-management/ # Boards: CRUD, filtering (44 tests) ├── task-management/ # Tasks: CRUD, filters, drag & drop (61 tests) ├── search/ # Search with query chips (16 tests) └── backlog-categories/ # Category management
Each feature contains ALL related code (not split by type):
Automatically runs on git commit:
urgent bug # Free text
Board:ProjectA urgent # Board-scoped
Tag:frontend Tag:bug critical # Tag filtering
Status:TODO high priority # Status filtering161 tests passing across all features:
npm test # Run all unit tests
npm run test:coverage # With coverage report
npm run cypress:open # E2E testsMIT License - see LICENSE file for details.
Built with Clean Code principles and SOLID architecture
| Back | FazBrowse Home | New Git URL |