Files
sonr/devbox.json
T

17 lines
431 B
JSON
Raw Normal View History

2024-07-05 22:20:13 -04:00
{
2024-08-10 17:55:28 -04:00
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
2024-08-31 18:54:14 -04:00
"packages": ["go@1.21", "air@latest"],
2024-07-05 22:20:13 -04:00
"env": {
"GOPATH": "$HOME/go",
2024-07-23 14:18:15 -04:00
"PATH": "$HOME/go/bin:$PATH"
2024-07-05 22:20:13 -04:00
},
"shell": {
"scripts": {
2024-08-31 18:54:14 -04:00
"init": ["make install", "sonrd init"],
2024-07-23 14:18:15 -04:00
"proto": ["make proto-gen"],
2024-08-31 18:54:14 -04:00
"build": ["make build", "make local-image"],
2024-08-10 17:19:59 -04:00
"testnet": ["make sh-testnet"]
2024-07-05 22:20:13 -04:00
}
}
}