├── .github └── logo.png ├── .gitignore ├── LICENSE ├── README-zh_cn.md ├── README.md ├── docs ├── en │ └── index.md └── zh │ └── index.md ├── rssman-lite ├── .env └── docker-compose.yml ├── rssman-standard ├── .env └── docker-compose.yml └── rssman-ultimate ├── .env ├── config.yaml ├── docker-compose.yml └── example.env /.github/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/.github/logo.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zh_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/README-zh_cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/README.md -------------------------------------------------------------------------------- /docs/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/docs/en/index.md -------------------------------------------------------------------------------- /docs/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/docs/zh/index.md -------------------------------------------------------------------------------- /rssman-lite/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/rssman-lite/.env -------------------------------------------------------------------------------- /rssman-lite/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/rssman-lite/docker-compose.yml -------------------------------------------------------------------------------- /rssman-standard/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/rssman-standard/.env -------------------------------------------------------------------------------- /rssman-standard/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/rssman-standard/docker-compose.yml -------------------------------------------------------------------------------- /rssman-ultimate/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/rssman-ultimate/.env -------------------------------------------------------------------------------- /rssman-ultimate/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/rssman-ultimate/config.yaml -------------------------------------------------------------------------------- /rssman-ultimate/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/rssman-ultimate/docker-compose.yml -------------------------------------------------------------------------------- /rssman-ultimate/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-XKL/RSSmanX/HEAD/rssman-ultimate/example.env --------------------------------------------------------------------------------