SCRUM board based on the REST API of Redmine
A Scrum Board based on the REST API of Redmine.
Issues
(see screenshot)Integer
Save
, copy the numeric ID from the URL to customSprintNumberFieldId
of ./config/config.jsonIssues
(see screenshot)Integer
or use format Key/value list
(this would enable you to enforce certain Fibonacci numbers: 1, 2, 3, 5, 8, 13)Save
, copy the numeric ID from the URL to customStoryPointsFieldId
of ./config/config.jsonTo Test
, To Review
and/or To Deploy
Within ./config/config.json you can define the mapping from Redmine issue statuses to SCRUM Board statuses:
...
"columns": {
"new": {
"abbr": "new",
"name": "New",
"statuses": [
"New",
"Accepted",
"Reopened",
"Feedback Provided"
]
},
...
Alternative view where each Redmine project is represented as horizontal swimlane.
Gives you various statistics about workload distribution.
History of development speed.
Change the Sprint number.
If run behind a HTTPS terminator, you have to offload the secure WebSocket (ws://) connection as well. On Nginx you can this via:
location /ws/ {
// this proxies the wss:// connection to ws://
proxy_pass http://127.0.0.1:8083;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
yarn install
- fetch dependenciesyarn dev-server
- runs ./src/server.js at port 8080yarn dev-client
- runs a Webpack-Dev-Server with Hot Reloadspent_hours
field is only available in issues-detail view, but not within issues-list view