mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2025-11-10 00:10:46 +08:00
Adjust default schedule
parent
1f748bac83
commit
5517ecba2d
2 changed files with 45 additions and 35 deletions
|
|
@ -1,7 +1,7 @@
|
|||
| Shell Command |Docker Environment Variable |Description | Default Value |
|
||||
| :------------ | :------------ | :------------ | :------------ |
|
||||
| `-r` or`--run` | QBT_RUN |Run without the scheduler. Script will exit after completion. | False |
|
||||
| `-sch` or `--schedule` | QBT_SCHEDULE | Schedule to run every x minutes. (Default set to 30) | 30 |
|
||||
| `-sch` or `--schedule` | QBT_SCHEDULE | Schedule to run every x minutes. (Default set to 1440 (1 day)) | 1440 |
|
||||
| `-c CONFIG` or `--config-file CONFIG` | QBT_CONFIG | This is used if you want to use a different name for your config.yml. `Example: tv.yml` | config.yml |
|
||||
| `-lf LOGFILE,` or `--log-file LOGFILE,` | QBT_LOGFILE | This is used if you want to use a different name for your log file. `Example: tv.log` | activity.log |
|
||||
| `-cs` or `--cross-seed` | QBT_CROSS_SEED | Use this after running [cross-seed script](https://github.com/mmgoodnow/cross-seed) to add torrents from the cross-seed output folder to qBittorrent | False |
|
||||
|
|
|
|||
|
|
@ -13,6 +13,9 @@ A template Configuration File can be found in the repo [config/config.yml.sample
|
|||
|
||||
**Sample**
|
||||
```yaml
|
||||
# This is an example configuration file that documents all the options.
|
||||
# It will need to be modified for your specific use case.
|
||||
|
||||
# qBittorrent parameters
|
||||
qbt:
|
||||
host: "localhost:8080"
|
||||
|
|
@ -29,7 +32,7 @@ directory:
|
|||
root_dir: "/data/torrents/"
|
||||
remote_dir: "/mnt/user/data/torrents/"
|
||||
|
||||
# Category/Pathing Parameters
|
||||
# Category & Path Parameters
|
||||
cat:
|
||||
# <Category Name> : <save_path> # Path of your save directory. Can be a keyword or full path
|
||||
movies: "/data/torrents/Movies"
|
||||
|
|
@ -68,6 +71,7 @@ tags:
|
|||
digitalcore:
|
||||
tag: DigitalCore
|
||||
max_ratio: 5.0
|
||||
notifiarr: digitalcore
|
||||
gazellegames:
|
||||
tag: GGn
|
||||
limit_upload_speed: 150
|
||||
|
|
@ -87,14 +91,16 @@ tags:
|
|||
notifiarr:
|
||||
tleechreload:
|
||||
tag: TorrentLeech
|
||||
notifiarr: torrentleech
|
||||
torrentdb:
|
||||
tag: TorrentDB
|
||||
notifiarr: torrentdb
|
||||
torrentleech:
|
||||
tag: TorrentLeech
|
||||
notifiarr: torrentleech
|
||||
tv-vault:
|
||||
tag: TV-Vault
|
||||
|
||||
|
||||
# Tag Movies/Series that are not hard linked
|
||||
nohardlinks:
|
||||
# Mandatory to fill out directory parameter above to use this function (root_dir/remote_dir)
|
||||
|
|
@ -142,8 +148,10 @@ orphaned:
|
|||
- "**/Thumbs.db"
|
||||
- "**/@eaDir"
|
||||
- "/data/torrents/temp/**"
|
||||
- "**/*.!qB"
|
||||
|
||||
# Apprise integration with webhooks
|
||||
# Leave Empty/Blank to disable
|
||||
apprise:
|
||||
# Mandatory to fill out the url of your apprise API endpoint
|
||||
api_url: http://apprise-api:8000
|
||||
|
|
@ -151,6 +159,7 @@ apprise:
|
|||
notify_url:
|
||||
|
||||
# Notifiarr integration with webhooks
|
||||
# Leave Empty/Blank to disable
|
||||
notifiarr:
|
||||
# Mandatory to fill out API Key
|
||||
apikey: ####################################
|
||||
|
|
@ -162,6 +171,7 @@ notifiarr:
|
|||
# Set value to notifiarr if using notifiarr integration
|
||||
# Set value to apprise if using apprise integration
|
||||
# Set value to a valid webhook URL
|
||||
# Leave Empty/Blank to disable
|
||||
webhooks:
|
||||
error: https://mywebhookurl.com/qbt_manage
|
||||
run_start: notifiarr
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue