docs: add instructions for systemd service setup

Added detailed installation and activation instructions to the systemd service files for Transfer.coffee Tracker and Transfer.coffee. This will assist users in properly enabling and starting the services, ensuring smoother deployment and fewer setup issues.
This commit is contained in:
Kumi 2024-08-02 20:37:14 +02:00
parent 22ec436f7b
commit 9b95eb3729
Signed by: kumi
GPG key ID: ECBCC9082395383F
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,6 @@
# Install this as /etc/systemd/system/transfercoffee-tracker.service
# Then run `systemctl enable --now transfercoffee-tracker` to start it now and on boot
[Unit] [Unit]
Description=Transfer.coffee Tracker Description=Transfer.coffee Tracker
After=syslog.target After=syslog.target
@ -6,6 +9,7 @@ After=network.target
[Service] [Service]
Type=simple Type=simple
# Replace this with the user/group you want to run as
User=transfercoffee User=transfercoffee
Group=transfercoffee Group=transfercoffee

View file

@ -1,3 +1,6 @@
# Install this as /etc/systemd/system/transfercoffee.service
# Then run `sudo systemctl enable --now transfercoffee` to start it now and on boot
[Unit] [Unit]
Description=Transfer.coffee Description=Transfer.coffee
After=syslog.target After=syslog.target
@ -6,7 +9,7 @@ After=network.target
[Service] [Service]
Type=simple Type=simple
# Replace this with the user you want to run as # Replace this with the user/group you want to run as
User=transfercoffee User=transfercoffee
Group=transfercoffee Group=transfercoffee