Skip to content

Commit

Permalink
refactor: References/Cloudplow: Update rclone binary path in default …
Browse files Browse the repository at this point in the history
…config (#249)

* refactor: Update rclone binary path in default config

This commit updates the default config file by adding the path to the rclone binary as "/usr/bin/rclone". This change ensures that the correct
binary is used for rclone operations.

* Correct the rclone binary path in config

* refactor: Replace Pushover notifications with
Apprise integration.

This commit updates the second Cloudplow configuration by replacing the
existing Pushover notifications with a new Apprise/Discord integration.
The
Apprise integration allows users to receive upload status notifications
on a Discord channel via a webhook.

* Fix spacing. I use 2 spaces in my own config. :p

* Fix the REST of the spaces.
  • Loading branch information
RaneyDazed authored Sep 18, 2024
1 parent 5ae021e commit 785d0c4
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions docs/reference/cloudplow.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ This is the default config; it contains a single remote/uploader pair. This set
{
"core": {
"dry_run": false,
"rclone_config_path": "/home/seed/.config/rclone/rclone.conf"
"rclone_binary_path": "/usr/bin/rclone",
"rclone_config_path": "/home/seed/.config/rclone/rclone.conf"
},
"hidden": {},
"notifications": {
Expand Down Expand Up @@ -216,11 +217,10 @@ This config uploads everything from `/mnt/local/Media` to `google:/Media` [trigg
},
"hidden": {},
"notifications": {
"Pushover": {
"app_token": "xxxxx",
"priority": 0,
"service": "pushover",
"user_token": "xxxxx"
"apprise": {
"service": "apprise",
"url": "discord://Webhook_ID/Webhook_Token",
"title": "Cloudplow-Upload"
}
},
"nzbget": {
Expand Down Expand Up @@ -338,7 +338,8 @@ This is the default config with Pushover notifications configured.
{
"core": {
"dry_run": false,
"rclone_config_path": "/home/seed/.config/rclone/rclone.conf"
"rclone_binary_path": "/usr/bin/rclone",
"rclone_config_path": "/home/seed/.config/rclone/rclone.conf"
},
"hidden": {},
"notifications": {
Expand Down

0 comments on commit 785d0c4

Please sign in to comment.