https://github.com/zachstence/bingbong
A Discord bot that searches Bing, because why not
https://github.com/zachstence/bingbong
Last synced: about 2 months ago
JSON representation
A Discord bot that searches Bing, because why not
- Host: GitHub
- URL: https://github.com/zachstence/bingbong
- Owner: zachstence
- License: mit
- Created: 2022-04-07T02:13:48.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-12T02:59:36.000Z (over 3 years ago)
- Last Synced: 2025-03-03T01:29:02.623Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://hub.docker.com/r/zachstence/bingbong
- Size: 179 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bingbong
A Discord bot that searches Bing, because why not

## Table of Contents
- [Config](#config)
- [Usage](#usage)
- [Run using Docker](#run-using-docker)
- [Run using `docker-compose`](#run-using-docker-compose)
- [Future Features](#future-features)
## Config
Create a config file following the format in [`config/default.json`](config/default.json).
```json
{
"bot": {
"token": "",
}
}
```
| Config | Description | Example |
| ----------------------- | ------------------------------------------------------------ | ------------------------------------------------------------- |
| `bot.token` | Your Discord bot's API token | `OTYxNDQ5NTI3NzYyNjM2ODUw.Yk5Jpg.qJusxStFqRyy5CyYO4eIrmBycck` |
## Usage
Run `bingbong` using your `config.json`
### Run using Docker
```sh
docker run \
-v /path/to/config.json:/app/config/production.json \
zachstence/bingbong
```
### Run using `docker-compose`
```yaml
version: "3.8"
services:
bingbong:
image: zachstence/bingbong
volumes:
- /path/to/config.json:/app/config/production.json:ro
restart: unless-stopped
```
## Future Features
- Configuration to update multiple zones/records
- Accept file for Discord bot token to enable better security (Docker secrets)