Another JSONNET dependency management #520
Locked
morlay
started this conversation in
Show and tell
Replies: 2 comments 4 replies
-
Hey! I've found some time to play with this. I must say, great job, I really like this! I have a couple of questions to better understand the project and it's relationship to other Jsonnet tools:
|
Beta Was this translation helpful? Give feedback.
4 replies
-
I'd just like to point out that https://github.com/jsonnetmod/jsonnetmod has this banner:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi All. I have written another jsonnet dependency management.
Features
$(go env GOMODCACHE)
GOPROXY
supported to speed up downloadingJSONNET_PATH
compatibility__dirname
and__filename
see more https://github.com/jsonnetmod/jsonnetmod
Waiting your feedbacks 😃
Why not
jsonnnet-bundler
?Network issue
jsonnet-bundler is downloading through github api from s3, witch will be broken without
HTTPS_PROXY
.so i need something like
GOPROXY
to save me ( i could easy to setup prviate goproxy server too.)and the jsonnet-bundler download repo codes into
${PROJECT_ROOT}/vendor/.tmp
for each jsonnet projects.using go modules, repo codes will under
$(go env GOMODCACHE)/${repo}@${version}
.this feature will save disk usages, and avoid downloading repo twice if already cached.
Beta Was this translation helpful? Give feedback.
All reactions