mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
20 lines
488 B
JSON
20 lines
488 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
|
|
"packages": ["go@1.21"],
|
|
"env": {
|
|
"GOPATH": "$HOME/go",
|
|
"PATH": "$HOME/go/bin:$PATH"
|
|
},
|
|
"shell": {
|
|
"scripts": {
|
|
"install": ["make install"],
|
|
"gen": ["make proto-gen"],
|
|
"build": [
|
|
"make local-image",
|
|
"docker tag sonr:local ghcr.io/onsonr/sonrd:latest"
|
|
],
|
|
"push": ["docker push ghcr.io/onsonr/sonrd:latest"]
|
|
}
|
|
}
|
|
}
|