{"id":20153863,"url":"https://github.com/zachstence/bingbong","last_synced_at":"2026-06-07T03:32:55.156Z","repository":{"id":106797777,"uuid":"478794847","full_name":"zachstence/bingbong","owner":"zachstence","description":"A Discord bot that searches Bing, because why not","archived":false,"fork":false,"pushed_at":"2023-02-12T02:59:36.000Z","size":183,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-03T01:29:02.623Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/zachstence/bingbong","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zachstence.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-04-07T02:13:48.000Z","updated_at":"2022-04-07T04:00:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"7aed4aec-cc9d-48d8-a679-10bf60637d00","html_url":"https://github.com/zachstence/bingbong","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zachstence/bingbong","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zachstence%2Fbingbong","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zachstence%2Fbingbong/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zachstence%2Fbingbong/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zachstence%2Fbingbong/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zachstence","download_url":"https://codeload.github.com/zachstence/bingbong/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zachstence%2Fbingbong/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27385050,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-30T02:00:05.582Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T23:22:48.452Z","updated_at":"2025-11-30T09:03:55.630Z","avatar_url":"https://github.com/zachstence.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bingbong\nA Discord bot that searches Bing, because why not\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/zachstence/bingbong/blob/main/LICENSE\"\u003e\n        \u003cimg alt=\"license mit\" src=\"https://img.shields.io/github/license/zachstence/bingbong?style=for-the-badge\" /\u003e\n    \u003c/a\u003e\n    \u003cbr /\u003e\n    \u003ca href=\"https://hub.docker.com/r/zachstence/bingbong\"\u003e\n        \u003cimg alt=\"docker pulls\" src=\"https://img.shields.io/docker/pulls/zachstence/bingbong?style=for-the-badge\" /\u003e\n        \u003cimg alt=\"docker size\" src=\"https://img.shields.io/docker/image-size/zachstence/bingbong?style=for-the-badge\" /\u003e\n    \u003c/a\u003e\n    \u003cbr /\u003e\n    \u003ca href=\"#\"\u003e\n        \u003cimg alt=\"wakatime\" src=\"https://wakatime.com/badge/user/2a0a4013-ea89-43b7-99d9-1a215b4c34d0/project/87dcbaee-edcf-4b4e-b741-4eaf949acd68.svg?style=for-the-badge\" /\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n![bingbong demo](assets/bingbong%20demo.PNG)\n\n## Table of Contents\n- [Config](#config)\n- [Usage](#usage)\n  - [Run using Docker](#run-using-docker)\n  - [Run using `docker-compose`](#run-using-docker-compose)\n- [Future Features](#future-features)\n\n## Config\nCreate a config file following the format in [`config/default.json`](config/default.json).\n\n```json\n{\n    \"bot\": {\n        \"token\": \"\",\n    }\n}\n```\n\n| Config                  | Description                                                  | Example                                                       |\n| ----------------------- | ------------------------------------------------------------ | ------------------------------------------------------------- |\n| `bot.token`             | Your Discord bot's API token                                 | `OTYxNDQ5NTI3NzYyNjM2ODUw.Yk5Jpg.qJusxStFqRyy5CyYO4eIrmBycck` |\n\n## Usage\nRun `bingbong` using your `config.json`\n\n### Run using Docker\n```sh\ndocker run \\\n    -v /path/to/config.json:/app/config/production.json \\\n    zachstence/bingbong\n```\n\n### Run using `docker-compose`\n```yaml\nversion: \"3.8\"\n\nservices:\nbingbong:\n    image: zachstence/bingbong\n    volumes:\n    - /path/to/config.json:/app/config/production.json:ro\n    restart: unless-stopped\n```\n\n## Future Features\n- Configuration to update multiple zones/records\n- Accept file for Discord bot token to enable better security (Docker secrets)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzachstence%2Fbingbong","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzachstence%2Fbingbong","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzachstence%2Fbingbong/lists"}