mirror of
https://github.com/kiranshila/Doplarr.git
synced 2026-07-31 09:18:37 -04:00
804 B
804 B
Doplarr
A Better Sonarr/Radarr Request Bot for Discord
Building
You need the Clojure CLI tools to build
- Clone directory
clj -T:build uberjar
Configuring
- Fill out
resources/config.ednwith the requisite things
Setting up as a service (On Linux (Systemd))
- Create the file /etc/systemd/system/doplarr.service with the following
[Unit]
Description=Doplarr Daemon
After=syslog.target network.target
[Service]
User=root
Group=root
Type=simple
WorkingDirectory=/opt/Doplarr
ExecStart=/usr/bin/java -jar
TimeoutStopSec=20
KillMode=process
Restart=always
[Install]
WantedBy=multi-user.target
- Customize the user, group, and working directory to the location of the jar
Then, as root
systemctl -q daemon-reloadsystemctl enable --now -q doplarr