https://github.com/thelovinator1/github-sponsor-discord-notifier
Send a webhook to Discord when someone sponsors you
https://github.com/thelovinator1/github-sponsor-discord-notifier
discord github github-sponsors hacktoberfest sponsors webhook
Last synced: 4 months ago
JSON representation
Send a webhook to Discord when someone sponsors you
- Host: GitHub
- URL: https://github.com/thelovinator1/github-sponsor-discord-notifier
- Owner: TheLovinator1
- License: gpl-3.0
- Created: 2022-11-26T02:57:57.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2025-03-11T17:45:42.000Z (7 months ago)
- Last Synced: 2025-03-27T20:42:10.311Z (7 months ago)
- Topics: discord, github, github-sponsors, hacktoberfest, sponsors, webhook
- Language: Python
- Homepage:
- Size: 396 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# github-sponsor-discord-notifier
Send a webhook to Discord when someone sponsors you.
![]()
## Docker
- Rename `.env.example` to `.env` and fill in the values.
- Or set your environment variables manually.
- Run `docker-compose up -d` to start the container.
- Add the `github-sponsor-discord-notifier` server behind your reverse proxy.
- Go to `https://github.com/sponsors//dashboard/webhooks` and add your subdomain as the webhook URL.
- Example: `https://sponsor.example.com/webhook`
- Content type: `application/json`
- No secret required.## Nginx Configuration
```nginx
## Version 2023/11/21
server {
listen 443 ssl http2;server_name sponsor.example.com; # Change this to your subdomain
include /config/nginx/ssl.conf;
client_max_body_size 0;
location / {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app github-sponsor-discord-notifier; # Change this to your container name
set $upstream_port 5000;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
}
}
```