make notifiations verbose by default.

added systemd service file for automatic mode.
pull/54/head
l3uddz 7 years ago
parent 018dc5cda4
commit d3ae863c45

@ -66,7 +66,7 @@ base_config = {
}
},
'notifications': {
'verbose': False,
'verbose': True,
'my slack': {
'service': 'slack',
'webhook_url': ''

@ -0,0 +1,17 @@
# /etc/systemd/system/traktarr.service
[Unit]
Description=traktarr
After=network-online.target unionfs.service
[Service]
User=seed
Group=seed
Type=simple
WorkingDirectory=/opt/traktarr/
ExecStart=/usr/bin/python3 /opt/traktarr/traktarr.py run
Restart=always
RestartSec=10
[Install]
WantedBy=default.target
Loading…
Cancel
Save