This repository has been archived by the owner on Aug 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(triggers): add inotify trigger * refactor(triggers/bernard): prefix paths with / and resolve issue with files in root of drive * docs: remove bernard mia status
- Loading branch information
Showing
9 changed files
with
426 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,14 +22,8 @@ In addition, this rewrite introduces a more modular approach and should be easy | |
|
||
## Early Access | ||
|
||
**We are looking for technical writers! If you have ideas on how to improve Autoscan's documentation, please write [@m-rots](mailto:[email protected]?subject=Autoscan%20technical%20writer) an email.** | ||
|
||
We have not finished all work on Autoscan yet, and are still working on some things. | ||
|
||
The major feature which is currently MIA: | ||
|
||
- Google Drive monitoring (Shared Drives exclusively) | ||
|
||
Some small things we are still working on: | ||
|
||
- Automating the testing of the processor's business logic | ||
|
@@ -159,6 +153,7 @@ Daemons run in the background and continuously fetch new changes based on a [cro | |
The following daemons are currently provided by Autoscan: | ||
|
||
- Google Drive | ||
- inotify | ||
|
||
#### Webhooks | ||
|
||
|
@@ -205,12 +200,29 @@ triggers: | |
to: /mnt/unionfs/Media/$1 | ||
# filter with regular expressions | ||
include: # if set, then exclude is ignored | ||
include: | ||
- "^/mnt/unionfs/Media/*" | ||
exclude: | ||
- "\.srt$" | ||
inotify: | ||
- priority: 0 | ||
# filter with regular expressions | ||
include: | ||
- '/mnt/unionfs/Media/*' | ||
exclude: | ||
- '\.(srt|pdf)$' | ||
# rewrite inotify path to unified filesystem | ||
rewrite: | ||
- from: ^/mnt/local/Media/* | ||
to: /mnt/unionfs/Media/$1 | ||
# local filesystem paths to monitor | ||
paths: | ||
- path: /mnt/local/Media | ||
sonarr: | ||
- name: sonarr-docker # /triggers/sonarr-docker | ||
priority: 2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.