Feature Request - Add --no-server feature
Instead of serving up the files right after analysis, it would be great to have an option without the server feature.
Need this functionality as well. Prefer having gitrob generate just the JSON session file that can be diff'd over time without spinning up its own web server to show results.
Def would love this - want to add to an automated CI process.
I found a workaround to stop the webserver automatically (requires expect):
#!/usr/bin/env bash
args=$@
expect <<- DONE
set timeout -1
spawn /path/to/gitrob $args
expect "*to stop web server and exit.*"
send BYE
DONE
You can pass parameters to the script as you would do with gitrob
I forked this repo and added this ability with a new command-line switch "noweb", as well as the ability to pull code from private org repos (@betobrandao wrote the majority of that, just adapted it a bit). https://github.com/PortOfPortland/gitrob for anyone who'd like to check it out.
@rayterrill @jurelou @dcepler @josephmilla This has been merged into the new fork as this one is no longer maintained. Please open up any additional issues or bugs in that repo. Thanks!