Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rickdgray/redditpushdispatcher
Push new reddit posts to my phone
https://github.com/rickdgray/redditpushdispatcher
pushover reddit reddit-scraper scraper
Last synced: about 1 month ago
JSON representation
Push new reddit posts to my phone
- Host: GitHub
- URL: https://github.com/rickdgray/redditpushdispatcher
- Owner: rickdgray
- License: gpl-3.0
- Created: 2023-07-06T21:07:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-17T20:22:57.000Z (6 months ago)
- Last Synced: 2024-06-17T22:34:24.789Z (6 months ago)
- Topics: pushover, reddit, reddit-scraper, scraper
- Language: C#
- Homepage:
- Size: 47.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Reddit Push Dispatcher
Push new posts from your favorite subreddit right to your phone!## Pushover
You will need an account at [Pushover](https://pushover.net/) to be able to run this. Be sure to also create an application and get the associated `API Token/Key` as well.## Settings
Once you create an account and have both a `User Key` and an `API Token/Key`, you need to pass them in at runtime. Feel free to also set your preferred subreddit and the rate at which the services will poll and scrape Reddit. URLs **must** be to `old.reddit.com`. The optional settings are:* PushoverUserKey
* PushoverAppKey
* RedditFeedUrl (optional, defaults to [r/GamingLeaksAndRumours/new/](old.reddit.com/r/GamingLeaksAndRumours/new/))
* PollRateInMinutes (optional, defaults to 60)## Deploying
Simply run with the necessary environment variables set and the image specified.
```bash
docker run -itd --restart unless-stopped \
--env Settings__PushoverUserKey='abcd1234' \
--env Settings__PushoverAppKey='abcd1234' \
ghcr.io/rickdgray/redditpushdispatcher:main
```## Updating
First kill any currently running containers. Then update your local docker image with the following command.
```bash
docker pull ghcr.io/rickdgray/redditpushdispatcher:main
```
Then you can run the deployment command above to start anew.## Building
Projects in .NET have an unusual folder structure, so when building we must both specify the context to be at the root of the solution, but also specify the location of the `dockerfile`.
```bash
docker build -f .\RedditPushDispatcher\Dockerfile .
```## Debugging
You can edit the `launchSettings.json` file with your secrets. Then set the startup dropdown to "Docker" so that Visual Studio will create a container. This will allow you to debug with a local container.
```json
{
"profiles": {
"Docker": {
"commandName": "Docker",
"environmentVariables": {
"Settings__PushoverUserKey": "abcd1234",
"Settings__PushoverAppKey": "abcd1234",
}
}
}
}
```