https://github.com/chickenzord/rsshub-routes-tempoco
Tempo.co for RSSHub
https://github.com/chickenzord/rsshub-routes-tempoco
rsshub
Last synced: 7 months ago
JSON representation
Tempo.co for RSSHub
- Host: GitHub
- URL: https://github.com/chickenzord/rsshub-routes-tempoco
- Owner: chickenzord
- License: mit
- Created: 2024-09-22T05:17:12.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-19T10:38:50.000Z (11 months ago)
- Last Synced: 2025-02-02T01:42:25.696Z (9 months ago)
- Topics: rsshub
- Language: TypeScript
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: news-popular.ts
- License: LICENSE
Awesome Lists containing this project
README
# rsshub-routes-tempoco
Tempo.co route for RSSHub
## Usage in docker-compose
First, clone it to the location of your `docker-compose.yml`
```sh
git clone git@github.com:chickenzord/rsshub-routes-tempoco.git
```Then edit the yaml file accordingly:
```yaml
# docker-compose.yml
services:
rsshub:
container_name: rsshub
image: ghcr.io/diygod/rsshub:latest
restart: always
command:
- bash
- -c
- npm run build && npm run start
environment:
- NODE_ENV=production
volumes:
- ./rsshub-routes-tempoco:/app/lib/routes/tempoco:ro
```- `command`: The official docker image only use `npm run start`. We need to rebuild the routes by running `npm run build` beforehand.
- `volumes`: Mount the cloned route repository in `/app/lib/routes`## Development
Clone in your RSSHub working directory
```
git clone https://github.com/chickenzord/rsshub-routes-tempoco.git lib/routes/tempoco
```