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:
parent
22ec436f7b
commit
9b95eb3729
2 changed files with 8 additions and 1 deletions
|
@ -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]
|
||||
Description=Transfer.coffee Tracker
|
||||
After=syslog.target
|
||||
|
@ -6,6 +9,7 @@ After=network.target
|
|||
[Service]
|
||||
Type=simple
|
||||
|
||||
# Replace this with the user/group you want to run as
|
||||
User=transfercoffee
|
||||
Group=transfercoffee
|
||||
|
||||
|
|
|
@ -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]
|
||||
Description=Transfer.coffee
|
||||
After=syslog.target
|
||||
|
@ -6,7 +9,7 @@ After=network.target
|
|||
[Service]
|
||||
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
|
||||
Group=transfercoffee
|
||||
|
||||
|
|
Loading…
Reference in a new issue