Files
Linus Gasser e27e8b7b4f Radicle node and web frontend
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.
2026-07-21 15:02:53 +02:00

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"
]
}
}
}