#GIT monitor feeder
Python script to read commits from repositories and push the commit meta data to ElasticSearch.
##Steps to run: Refer: docker-hub
##Sample config file:
{
"cachePath": "/tmp/cache",
"batchSize": 10,
"indexName": "repo_commits",
"repos": [
{
"friendlyName": "myRepo",
"repoPath": "/tmp/myrepo",
"branches": ["master", "release-*"],
"contributors": ["Member1", "Member2", "Member3"]
}
],
"esUrl": "http://elasticsearch:9200"
}