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

https://github.com/vmorganp/reddit-telegram-notifier

Notify via telegram when there are new posts for a reddit search
https://github.com/vmorganp/reddit-telegram-notifier

Last synced: 7 months ago
JSON representation

Notify via telegram when there are new posts for a reddit search

Awesome Lists containing this project

README

          

# Send results for a reddit search to telegram

## Usage

To run the image published here:

```
# you'll want to write config.yaml before running

docker run \
--name=reddit-search-monitor \
-e REDDIT_CLIENT_ID=XXXXXXXXXXXXXX \
-e REDDIT_CLIENT_SECRET=XXXXXXXXXXXXXX \
-e TELEGRAM_TOKEN=XXXXXXXXXXXXXX \
-e INTERVAL=300 \
-v $(pwd)/config.yaml:/config.yaml \
--restart unless-stopped \
ghcr.io/vmorganp/reddit-telegram-notifier:main
```

To build from source

```

git clone
cd
# Edit the docker-compose.yml environment variables
docker-compose up --build

```