Popularity
0.3
Declining
Activity
0.0
Stable
0
2
0

Description

Golang dependencies for git projects, any language, full repo or specific folder.

Make dependencies as simple as possible keeping track of all dependencies in your projects one by one. Define a golla file and run: go run golla.go

Programming language: Go
Tags: Utility     Go Tools     Dependencies    

Golla alternatives and similar packages

Based on the "Go Tools" category.
Alternatively, view Golla alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Golla or a related project?

Add another 'Go Tools' Package

README

Golla

Golang dependencies for dummies.

Make dependencies as simple as possible keeping track of all dependencies in your projects one by one.

Define a golla dependencies file in the root of your project, for example:

# This is my golla dependencies! :D

# I am using this library for example:
[email protected]:fulldump/goconfig.git#1.4.0 -> src/vendor/github.com/fulldump/goconfig

# Add also golla.go itself:
[email protected]:fulldump/golla>golla.go -> golla.go

Then download golla.go to the root of your project and run:

go run golla.go

If you repeat the command, only new dependencies will be downloaded.

To update all dependencies downloading all again, use --update flag:

go run golla.go --update