In order to save network bandwith as well as uneeded logs, the configuration of Codebrag gets enriched with a new parameter store in the codebrag block. This parameter is of the following form:
pull-sleep-period {
enabled = true
from = 22
to = 5
}
This configuration says that Codebrag is allowed to not pull changes for repositories from 10PM to 4:59AM. If enabled is set to false then Codebrag will always pull changes.
This PR also fixes an error in the README.md : in order to run the H2 console from sbt we must call codebrag-dao/runH2Console and not codebrag-dao/run-h2-console.
In order to save network bandwith as well as uneeded logs, the configuration of Codebrag gets enriched with a new parameter store in the
codebrag
block. This parameter is of the following form:This configuration says that Codebrag is allowed to not pull changes for repositories from 10PM to 4:59AM. If
enabled
is set tofalse
then Codebrag will always pull changes.This PR also fixes an error in the
README.md
: in order to run the H2 console fromsbt
we must callcodebrag-dao/runH2Console
and notcodebrag-dao/run-h2-console
.