{"id":23960396,"url":"https://github.com/madh93/instaray","last_synced_at":"2025-06-29T10:37:11.098Z","repository":{"id":271067713,"uuid":"911852508","full_name":"Madh93/instaray","owner":"Madh93","description":"🔧 Telegram Bot for fixing Twitter/X, Instagram and TikTok embeds","archived":false,"fork":false,"pushed_at":"2025-02-08T14:42:00.000Z","size":37,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-24T12:19:16.666Z","etag":null,"topics":["bot","embed","fxtwitter","go","golang","instafix","instagram","telegram","telegram-bot","tiktok","twitter","vxtiktok"],"latest_commit_sha":null,"homepage":"","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/Madh93.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":"2025-01-04T02:44:58.000Z","updated_at":"2025-02-08T14:39:45.000Z","dependencies_parsed_at":"2025-01-05T08:48:30.180Z","dependency_job_id":"d1869aa5-74b7-4708-8624-d21fc71668ea","html_url":"https://github.com/Madh93/instaray","commit_stats":null,"previous_names":["madh93/instaray"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Madh93%2Finstaray","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Madh93%2Finstaray/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Madh93%2Finstaray/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Madh93%2Finstaray/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Madh93","download_url":"https://codeload.github.com/Madh93/instaray/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240475236,"owners_count":19807292,"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","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":["bot","embed","fxtwitter","go","golang","instafix","instagram","telegram","telegram-bot","tiktok","twitter","vxtiktok"],"created_at":"2025-01-06T19:27:52.896Z","updated_at":"2025-02-24T12:19:19.162Z","avatar_url":"https://github.com/Madh93.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Instaray\n\n[![Latest release](https://img.shields.io/github/v/tag/Madh93/instaray?label=Release)](https://github.com/Madh93/instaray/releases)\n[![Go Version](https://img.shields.io/badge/Go-1.23-blue)](https://go.dev/doc/install)\n[![Go Reference](https://pkg.go.dev/badge/github.com/Madh93/instaray.svg)](https://pkg.go.dev/github.com/Madh93/instaray)\n[![License](https://img.shields.io/badge/License-MIT-brightgreen)](LICENSE)\n\n`Instaray` is a simple [Telegram Bot](https://core.telegram.org/bots) written in [Go](https://go.dev/) that fixes Twitter, Instagram and TikTok embeds in Telegram using [FxTwitter](https://github.com/FixTweet/FxTwitter), [InstaFix](https://github.com/Wikidepia/InstaFix) and [vxtiktok](https://github.com/dylanpdx/vxtiktok).\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"#features\"\u003eFeatures\u003c/a\u003e •\n  \u003ca href=\"#requirements\"\u003eRequirements\u003c/a\u003e •\n  \u003ca href=\"#installation\"\u003eInstallation\u003c/a\u003e •\n  \u003ca href=\"#Configuration\"\u003eConfiguration\u003c/a\u003e •\n  \u003ca href=\"#contributing\"\u003eContributing\u003c/a\u003e •\n  \u003ca href=\"#license\"\u003eLicense\u003c/a\u003e\n\u003c/p\u003e\n\n## Features\n\n- 🤖 Fixes **twitter.com**, **x.com**, **instagram.com** and **tiktok.com** embeds.\n- 🔒 Support **chat ID** and **thread ID allowlists**.\n- 🐳 **Production-ready Docker image** for easy **deployment**.\n\n## Requirements\n\n- A [Telegram bot token](https://core.telegram.org/bots/features#botfather) (you can get one by talking to [@BotFather](https://t.me/BotFather) on Telegram)\n\n## Installation\n\n### Docker\n\n#### Using `docker run`\n\nUse the `docker run` command to start `Instaray`. Make sure to set the required environment variables:\n\n```sh\ndocker run --name instaray \\\n  -e INSTARAY_TELEGRAM_TOKEN=your-telegram-bot-token \\\n  ghcr.io/madh93/instaray:latest\n```\n\n#### Using `docker compose`\n\nCreate a `docker-compose.yml` file with the following content:\n\n```yml\nservices:\n  instaray:\n    image: ghcr.io/madh93/instaray:latest\n    restart: unless-stopped\n    # volumes:\n    #   - ./custom.config.toml:/var/run/ko/config.default.toml # Optional: specify a custom configuration file instead of the default one\n    environment:\n      - INSTARAY_TELEGRAM_TOKEN=your-telegram-bot-token\n```\n\nUse the `docker compose up` command to start `Instaray`:\n\n```sh\ndocker compose up\n```\n\n### From releases\n\nDownload the latest binary from [the releases page](https://github.com/Madh93/instaray/releases):\n\n```sh\ncurl -L https://github.com/Madh93/instaray/releases/latest/download/instaray$(uname -s)_$(uname -m).tar.gz | tar -xz -O instaray \u003e /usr/local/bin/instaray\nchmod +x /usr/local/bin/instaray\n```\n\n### From source\n\nIf you have Go installed:\n\n```sh\ngo install github.com/Madh93/instaray@latest\n```\n\n## Configuration\n\n`Instaray` comes with a [default configuration file](config.default.toml) that you can modify to suit your needs.\n\n### Loading a custom configuration file\n\nYou can load a different configuration file by using the `-config path/to/config/file` flag when starting the application:\n\n```sh\ninstaray -config custom.config.tml\n```\n\n### Overriding with environment variables\n\nAdditionally, you can override the configuration values using environment variables that begin with the prefix `INSTARAY_`. This allows you to customize your setup without needing to modify any configuration file:\n\n```sh\nINSTARAY_LOGGING_LEVEL=debug INSTARAY_TELEGRAM_ALLOWLIST=chat_id_1,chat_id_2 instaray\n```\n\n## Contributing\n\nContributions are welcome! Please open an issue or submit a pull request for any bug fixes or enhancements.\n\n1. Fork the repository.\n2. Create a new branch (`git checkout -b feature-branch`).\n3. Commit your changes (`git commit -am 'Add new feature'`).\n4. Push to the branch (`git push origin feature-branch`).\n5. Open a Pull Request.\n\n## License\n\nThis project is licensed under the [MIT license](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmadh93%2Finstaray","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmadh93%2Finstaray","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmadh93%2Finstaray/lists"}