# hof mod vendor - with deps
env GITHUB_TOKEN=
exec hof mod vendor

-- ssh/config --
# github account
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa_myaccount_github

# gitlab account
Host gitlab.com
HostName gitlab.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa_myaccount_gitlab

# gitlab company account
Host gitlab.my_company.com
HostName gitlab.my_company.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa_mycompanyaccount_gitlab

-- cue.mod/module.cue --
module: "github.com/test/priv-github"
cue: "0.8.2"

require: {
	"github.com/hofstadter-io/hofmod-test-priv-github": "v0.0.2"
}
