stamm / dep_radar

Monitoring your Go dependencies in a microservice world
25 stars 5 forks source link

Travis Code Climate Code Climate Go Report Card

Dep radar

dep radar is a prototype to control Go dependencies in microservice world. dep radar requires Go 1.10 or newer to compile.

You can try demo: https://dep-radar.zagirov.name

Screenshots

Frontend

How it works

You can't just run some binary. You have to write a bit of code. Your code must implement:

Simple example that shows a table with dependencies for entered github organization:

docker run -p 8081:8081 stamm/dep_radar:3.1.2

To put your token for github use this command:

docker run -e "GITHUB_TOKEN=t0ken" -p 8081:8081 stamm/dep_radar:3.1.2

Or with showing state of dependencies:

cat <<EOT > /tmp/recommended.json
{
    "github.com/pkg/errors": {
        "Recommended": ">=0.8.0",
        "Mandatory":  true
    },
    "github.com/kr/fs": {
        "Exclude": true
    },
    "github.com/pkg/profile": {
        "NeedVersion": true
    }
}
EOT

docker run -v /tmp:/cfg -p 8081:8081 stamm/dep_radar:2.0.0 -recommended_file="/cfg/recommended.json" -github_org="dep-radar"

You can find more in examples.

Supported code storage

Supported dep tools