From e33661738c9aeb689f691e84fbf15387fe334238 Mon Sep 17 00:00:00 2001 From: Alexis Sellier Date: Thu, 22 Jun 2023 12:13:11 +0200 Subject: [PATCH] Move unit files to `systemd` directory --- README.md | 10 ++++++++++ {radicle-httpd => systemd}/radicle-httpd.service | 0 {radicle-node => systemd}/radicle-node.service | 0 3 files changed, 10 insertions(+) rename {radicle-httpd => systemd}/radicle-httpd.service (100%) rename {radicle-node => systemd}/radicle-node.service (100%) diff --git a/README.md b/README.md index 30cbc37a..91b30479 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,16 @@ Or directly from our seed node: cargo install --force --locked --git https://seed.radicle.xyz/z3gqcJUoA1n9HaHKufZs5FCSGazv5.git \ radicle-cli radicle-node radicle-remote-helper +## Running + +*Systemd* unit files are provided for the node and HTTP daemon under the +`/systemd` folder. They can be used as a starting point for further +customization. + +Additionally, a `Dockerfile` is included under both crates. + +For running in debug mode, see [HACKING.md](HACKING.md). + ## Contributing See [CONTRIBUTING.md](CONTRIBUTING.md) and [HACKING.md](HACKING.md) for an diff --git a/radicle-httpd/radicle-httpd.service b/systemd/radicle-httpd.service similarity index 100% rename from radicle-httpd/radicle-httpd.service rename to systemd/radicle-httpd.service diff --git a/radicle-node/radicle-node.service b/systemd/radicle-node.service similarity index 100% rename from radicle-node/radicle-node.service rename to systemd/radicle-node.service