Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ms committed Mar 16, 2021
2 parents 8671597 + f2251de commit efc9b99
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 3 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: .NET Core

on:
workflow_dispatch:
push:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1
- name: Build
run: dotnet build --configuration Release
23 changes: 20 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# RcloneFileWatcherCore 0.2
# RcloneFileWatcherCore 0.4
.NET Core 3.1

## Main Features
Expand Down Expand Up @@ -34,7 +34,13 @@
".drivedownload"
]
}
]
],
"UpdateRclone": {
"Update": true,
"RclonePath": ".\\rclone.exe",
"RcloneWebsiteCurrentVersionAddress": "https://downloads.rclone.org/rclone-current-windows-amd64.zip",
"ChceckUpdateHours": 1
},
}
```
- ```"ConsoleWriter": true``` - on or off display some debug information to console.
Expand All @@ -45,7 +51,18 @@

- ```"RcloneBatch": "d:\\files-from-shared.txt"``` - run rclone script (batch) every 30 seconds only when appears any changes. Rclone script must contain ```--include-from```

-```"ExcludeContains": [".tmp"]``` - exclude every path which contains ".tmp"
- ```"ExcludeContains": [".tmp"]``` - exclude every path which contains ".tmp"

- ``` "UpdateRclone"``` - auto update rclone to latest stable version

- ```"Update": true``` - enable auto update

- ```"RclonePath": ".\\rclone.exe"``` - path to eclone

- ```"RcloneWebsiteCurrentVersionAddress": "https://downloads.rclone.org/rclone-current-windows-amd64.zip"``` - current rclone version

- ```"ChceckUpdateHours": 1``` - check for update every numbers of hours


An example of a simple script - rclone_livesync_shared.bat:

Expand Down

0 comments on commit efc9b99

Please sign in to comment.