{"id":21631801,"url":"https://github.com/gregyjames/telegram-notifier","last_synced_at":"2026-03-08T23:33:37.919Z","repository":{"id":263374270,"uuid":"890171458","full_name":"gregyjames/telegram-notifier","owner":"gregyjames","description":"A simple, lightweight, self-hosted REST server for Raspberry Pi that sends Telegram notifications.","archived":false,"fork":false,"pushed_at":"2025-12-19T10:24:19.000Z","size":49,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-13T19:06:38.838Z","etag":null,"topics":["docker","docker-compose","docker-image","notification","notifications","notify","raspberry-pi","raspberrypi","rest-api","restapi","self-hosted","selfhosted","telegram"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/repository/docker/gjames8/telegram-notifier/","language":"Go","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/gregyjames.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-11-18T05:37:07.000Z","updated_at":"2025-12-30T10:52:45.000Z","dependencies_parsed_at":"2024-11-18T06:49:12.214Z","dependency_job_id":"f1803dab-7e1b-43a2-8de6-5190d604b0f2","html_url":"https://github.com/gregyjames/telegram-notifier","commit_stats":null,"previous_names":["gregyjames/telegram-notifier"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/gregyjames/telegram-notifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gregyjames%2Ftelegram-notifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gregyjames%2Ftelegram-notifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gregyjames%2Ftelegram-notifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gregyjames%2Ftelegram-notifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gregyjames","download_url":"https://codeload.github.com/gregyjames/telegram-notifier/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gregyjames%2Ftelegram-notifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30277001,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-08T20:45:49.896Z","status":"ssl_error","status_checked_at":"2026-03-08T20:45:49.525Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["docker","docker-compose","docker-image","notification","notifications","notify","raspberry-pi","raspberrypi","rest-api","restapi","self-hosted","selfhosted","telegram"],"created_at":"2024-11-25T02:15:12.707Z","updated_at":"2026-03-08T23:33:37.897Z","avatar_url":"https://github.com/gregyjames.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Docker Image CI](https://github.com/gregyjames/telegram-notifier/actions/workflows/docker-image.yml/badge.svg)](https://github.com/gregyjames/telegram-notifier/actions/workflows/docker-image.yml)\n![GitHub repo size](https://img.shields.io/github/repo-size/gregyjames/telegram-notifier)\n![Docker Image Size (tag)](https://img.shields.io/docker/image-size/gjames8/telegram-notifier/latest)\n![Docker Pulls](https://img.shields.io/docker/pulls/gjames8/telegram-notifier)\n\n# telegram-notifier\nA simple, self-hosted REST server for Raspberry Pi that sends Telegram notifications.\n\n## How to use\n### Docker compose\n\n```yaml\nservices:\n  telegram:\n  container_name: telegram_notifier\n  image: gjames8/telegram-notifier:latest\n  restart: unless-stopped\n  ports:\n    - \"8080:8080\"\n  volumes:\n    - ./telegram:/usr/src/app/data\n```\n###  Create config\nIn the same directory as your Compose file, create a new folder named `telegram` and create a `config.json` file with the following contents:\n```json\n{\n\t\"key\": \"Telegram API KEY from BotFather\",\n\t\"chatid\": \"Telegram ChatID\",\n  \"RabbitMQ\": {\n    \"Host\": \"127.0.0.1\",\n    \"Port\": 5672,\n    \"Username\": \"guest\",\n    \"Password\": \"guest\",\n    \"UseRabbitMQ\": false\n  }\n}\n```\n### Run\n`docker compose up -d`\n\n### Send message\n```zsh\n curl -X POST http://localhost:8080/send \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"message\": \"Hello from POST body!\"}'\n```\n\n## Features\n- Fast\n- Extreamly Lightweight (1.76MB!)\n- Quick Setup\n\n## License\nMIT License\n\nCopyright (c) 2024 Greg James\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgregyjames%2Ftelegram-notifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgregyjames%2Ftelegram-notifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgregyjames%2Ftelegram-notifier/lists"}