e27e8b7b4f
This allows you to run an always-on node for your radicle projects and then synchronise with other nodes. It offers the node and a web-frontend, which is read-only.
21 lines
585 B
JSON
21 lines
585 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/main/.schema/devbox.schema.json",
|
|
"packages": [
|
|
"shellcheck@latest",
|
|
"hadolint@latest",
|
|
"yamllint@latest"
|
|
],
|
|
"shell": {
|
|
"init_hook": [
|
|
"echo 'radicle recipe: use `abra` (installed separately) for deploys; shellcheck/hadolint/yamllint here for linting.'"
|
|
],
|
|
"scripts": {
|
|
"lint": [
|
|
"shellcheck node-entrypoint.sh.tmpl abra.sh",
|
|
"hadolint build/node/Dockerfile build/explorer/Dockerfile",
|
|
"yamllint -d relaxed compose.yml .drone.yml"
|
|
]
|
|
}
|
|
}
|
|
}
|