[go-nuts] Re: [ANN] Dependencies for dummies

2018-05-15 Thread Gerardo Oscar JT
Updated script with option --parallel (enabled by default), up to 6x faster in a project with 10 dependencies :D El domingo, 13 de mayo de 2018, 22:12:59 (UTC+2), Gerardo Oscar JT escribió: > > Hi gophers! > > Golang do not have a canonical way to download dependencies. Glide is the > last one

[go-nuts] Re: [ANN] Dependencies for dummies

2018-05-15 Thread matthewjuran
Hello, I haven’t seen this pattern: src/vendor/github.com/fulldump/goconfig I’ve put vendored dependencies in the project: src/github.com/my/project/vendor/github.com/fulldump/goconfig Why are you doing it this way? Have you tried vgo? https://github.com/golang/vgo Matt On Sunday, May 13, 2

[go-nuts] Re: [ANN] Dependencies for dummies

2018-05-16 Thread Gerardo Oscar JT
Hello Matt, Having dependencies inside the project is the easiest way to make reproducible builds (without having infrastructure for mirrors) and makes your organization more independent from third parties. Moreover, tools based on dependencies rules (like maven, npm, etc) could make your proje

[go-nuts] Re: [ANN] Dependencies for dummies

2018-05-16 Thread matthewjuran
You answered it, thanks. Matt On Wednesday, May 16, 2018 at 4:14:35 AM UTC-5, Gerardo Oscar JT wrote: > > Hello Matt, > > Having dependencies inside the project is the easiest way to make > reproducible builds (without having infrastructure for mirrors) and makes > your organization more indepe