snowplow / snowplow-golang-tracker

Snowplow event tracker for Golang. Add analytics to your Go apps and servers
http://snowplowanalytics.com
Apache License 2.0
25 stars 14 forks source link

Add dep for dependency management #24

Closed jrluis closed 6 years ago

jrluis commented 6 years ago

Dep documentation can be found at https://github.com/golang/dep

You can follow this steps to setup dep on the project:

On a day to day basis you can upgrade the dependencies running: dep ensure -upgrade -v

Dep places the dependencies on the vendor folder, you can store or not this folder on git. I recommend not storing it to avoid doing commits with large number of files when upgrading the dependencies.

PS: If dep seems to be stuck while resolving dependencies, make sure the your ssh key is unlocked and able to access the git repo.