Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bpazy/rss-middleware
https://github.com/bpazy/rss-middleware
qbittorrent rss
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bpazy/rss-middleware
- Owner: Bpazy
- Created: 2020-04-10T09:52:27.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-07-09T16:39:19.000Z (over 4 years ago)
- Last Synced: 2024-10-08T16:21:45.914Z (about 1 month ago)
- Topics: qbittorrent, rss
- Language: Go
- Homepage: https://github.com/Bpazy/rss-middleware
- Size: 23.4 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rss-middleware
[![Build](https://github.com/Bpazy/rss-middleware/workflows/Build/badge.svg)](https://github.com/Bpazy/rss-middleware/actions?query=workflow%3ABuild)
[![Docker Pulls](https://img.shields.io/docker/pulls/bpazy/rss-middleware)](https://hub.docker.com/r/bpazy/rss-middleware)
rss-middleware 的目的是提取 RSS 订阅中的磁力,并将磁力推送到 qBittorrent 中。## 使用手册
### 直接使用
```
Usage of rss-middleware.exe:
-cron string
守护模式
-qbittorrent string
qBittorrent API 链接地址
-qbittorrent-password string
qBittorrent 密码
-qbittorrent-username string
qBittorrent 用户名
-rss string
RSS 链接地址
-config-path string
配置文件、数据文件存储目录
```
### Docker 示例
```shell
docker run --name rss-middleware -e RSS=https://rsshub.app/dytt -e QBITTORRENT=http://192.168.194.20:8080 -e QBITTORRENT_USERNAME=admin -e QBITTORRENT_PASSWORD=admin -e CRON="*/1 * * * *" bpazy/rss-middleware
```### Docker Compose (推荐)
1. 下载 [docker-compose.yml](./docker-compose.yml) 到任意位置;
2. 编辑 docker-compose.yml 文件;
3. 启动: `docker-compose up -d`