I focused on a couple of specific use cases:
* daily standup reports to replace or augment your existing standup * historical activity reports for sprint retrospectives * code change notifications so you can know when to provide just-in-time feedback
It isn't anything too sophisticated just yet, but I've already gotten a decent amount of value out of the tool in working with my own team.
Thanks for checking it out! Please let me know if you have any questions or feedback. It would also be awesome to hear what sort of reporting you would want to see next.
May as I ask how you're dealing with authentication/authorization? I always hit a wall monetizing side projects when I need to provide auth. I feel like I shouldn't have to roll my own auth system, but inevitably I do.
For third-party authentication/authorization, I use the python-social-auth django integration[1]. It has a massive number of third-party systems that it can connect to and it's really simple to get it set up. I would guess your language of choice has similar tools. I know passport[2] for nodejs is a solid choice.
[0] https://docs.djangoproject.com/en/2.1/topics/auth/ [1] https://github.com/python-social-auth/social-app-django [2] http://www.passportjs.org/