make notifiations verbose by default.

added systemd service file for automatic mode.
pull/5/head
l3uddz 7 years ago
parent b2ae8f4315
commit 5dcfffb656

@ -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