I'm having issues getting my dagger modules from a private repo on Github.com in an organisation repo
If I try and install it
dagger install ssh://git@github.com/ORG-NAME/daggerverse.git/buildsoftware -vvv
I get the error
Error: failed to get configured module: no dagger.json found in directory . or any parents up to git root
If I try to run it
dagger -m ssh://git@github.com/ORG-NAME/daggerverse.git/buildsoftware call debug -vvv
I get the error
Error: failed to get configured module: failed to get module ref kind: input: moduleSource resolve: failed to resolve git src to commit: failed to load cache key: NotFound: rpc error: code = NotFound desc = socket default not found
My repo is laid out like the "diagram" below
daggerverse |--buildsoftware ----|--dagger.json ----|--dagger_build.cfg ----|--src ----|----|--main ----|----|----|--__init__.py ----|----|----|--main.py ----|----|----|--config_loader.py
My dagger.json looks like
{ "name": "buildsoftware", "sdk": "python" }
I can clone the daggerverse repo fine with SSH on Git.
Can anyone suggest what I'm doing wrong?