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
- Host: GitHub
- URL: https://github.com/vmorganp/reddit-telegram-notifier
- Owner: vmorganp
- Created: 2022-05-10T06:56:10.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-03T19:23:32.000Z (9 months ago)
- Last Synced: 2025-01-03T20:28:01.976Z (9 months ago)
- Language: Python
- Size: 59.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 runningdocker 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```