An open API service indexing awesome lists of open source software.

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

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
```