(PoC created during 24h hackaton)
Static code analysis tool for Go. It runs tests coverage and dozen of linters, calculates total quality score and technical debt.
All services can be started at once with two commands:
docker-compose build
docker-compose upQuality Farm front-end should be now available at http://docker:9000/. It is recommended to add /etc/hosts alias for docker, eg.:
192.168.99.100 docker
# or
127.0.0.1 docker localhostWhile working on front-end part, you can start back-end services with docker-compose up redis websocket server. Now you can start front-end separately:
cd webapp/
npm install typings webpack-dev-server rimraf webpack -g
npm install
npm startApp should be available at http://localhost:3000/
While working on API server, you can start other services with docker-compose up redis websocket, then start front-end as described above and build & run server part:
go install ./cmd/server/ && server