CloudScrum is a tool for management and monitoring of development process for Scrum agile method.
The aim of this app is to save stories and tasks using Google Drive spreadsheets.
By default app needs to run under localhost:12345 address (due to GoogleDrive API key configuration) but you can generate your own API key using Google apis and update it in js/services/google.js file (clientId
and apiKey
variables).
If you don't want to generate your own API key and need simple server, you can use mongoose and configure it to run on port 12345 or use python builtin server:
$ python -m http.server 12345
Since there is no possibility to export Google Spreadsheets using JS, application is using simple proxy to get the data. You can find the source code here and its configuration in application in js/services/google.js file (proxyLink
variable).
There is also Android application, which allows to measure time for tasks assigned to the user. You can find it here.
You can also check basic version built using node.js.