Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Improve unit files, add binary install to README
Alexis Sellier committed 2 years ago
commit f3ae69fae830d42554ba8dd272636aa1f40563b7
parent 6dcc2a31d76ce8b95c76bf05a72001d3ac73521f
1 file changed +28 -0
added radicle-httpd/radicle-httpd.service
@@ -0,0 +1,28 @@
+
# Example systemd unit file for `radicle-httpd`.
+
#
+
# When running radicle-httpd on a server, it should be run as a separate user.
+
#
+
# Copy this file into /etc/systemd/system and set the User/Group parameters
+
# under [Service] appropriately.
+
#
+
# For users wishing to run a configured version of the service, copy this
+
# service file into the user's systemd directory, and edit appropriately.
+
#
+
# For example:
+
#
+
#   mkdir -p $HOME/.config/systemd/user/
+
#   cp radicle-node.service $HOME/.config/systemd/user/radicle-node.service
+
#
+
[Unit]
+
After=syslog.target network.target
+
Description=Radicle HTTPd
+

+
[Service]
+
ExecStart=%h/.radicle/bin/radicle-httpd
+
Environment=RAD_HOME=%h/.radicle
+
KillMode=process
+
Restart=always
+
RestartSec=1
+

+
[Install]
+
WantedBy=default.target