Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tedkulp/ombi-request-bot
Simple bot for handling request approval directly inside Telegram
https://github.com/tedkulp/ombi-request-bot
Last synced: 2 days ago
JSON representation
Simple bot for handling request approval directly inside Telegram
- Host: GitHub
- URL: https://github.com/tedkulp/ombi-request-bot
- Owner: tedkulp
- Created: 2020-10-18T20:03:45.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-10-18T20:06:06.000Z (about 4 years ago)
- Last Synced: 2024-11-14T10:41:24.581Z (2 months ago)
- Language: JavaScript
- Size: 77.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ombi-request-bot
Simple bot for handling request approval directly inside Telegram. For those admins
with very demanding users... When a user makes a requuest, a notifications will show
in a telegram channel. Click Approve or Deny. Simple as that!It runs in a docker container...
![movie](images/movie.png)
![tv](images/tv.png)
## How to run
### Docker
```
docker run -d -p 4322:4322 --env OMBI_URL=https://my-ombi-site --env OMBI_TOKEN=abc123 --env TELEGRAM_TOKEN=123456 --env TELEGRAM_CHAT_ID=abcdef --name ombi-request-bot tedkulp/ombi-request-bot
```### Docker Compose
```
version: '2'
services:
ombi-request-bot:
image: tedkulp/ombi-request-bot
restart: unless-stopped
container_name: ombi-request-bot
ports:
- 4322:4322
environment:
- OMBI_URL=https://my-ombi-site
- OMBI_TOKEN=abc123
- TELEGRAM_TOKEN=123456
- TELEGRAM_CHAT_ID=abcdef
```