{"id":48606860,"url":"https://github.com/robotty/recent-messages2","last_synced_at":"2026-04-09T00:09:29.152Z","repository":{"id":39860787,"uuid":"283577312","full_name":"robotty/recent-messages2","owner":"robotty","description":"Service to provide historical messages to Twitch chat clients","archived":false,"fork":false,"pushed_at":"2026-03-29T16:49:07.000Z","size":1272,"stargazers_count":84,"open_issues_count":11,"forks_count":5,"subscribers_count":4,"default_branch":"master","last_synced_at":"2026-03-29T18:05:58.588Z","etag":null,"topics":["api","chat","chatterino","irc","twitch"],"latest_commit_sha":null,"homepage":"https://recent-messages.robotty.de/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/robotty.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"RAnders00","custom":["https://paypal.me/RAnders00","https://recent-messages.robotty.de/#donate"]}},"created_at":"2020-07-29T18:48:35.000Z","updated_at":"2026-03-25T13:08:49.000Z","dependencies_parsed_at":"2024-08-11T20:01:56.247Z","dependency_job_id":"33240f8c-2c35-4320-8e14-b391f883db94","html_url":"https://github.com/robotty/recent-messages2","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/robotty/recent-messages2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robotty%2Frecent-messages2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robotty%2Frecent-messages2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robotty%2Frecent-messages2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robotty%2Frecent-messages2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/robotty","download_url":"https://codeload.github.com/robotty/recent-messages2/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robotty%2Frecent-messages2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31579088,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["api","chat","chatterino","irc","twitch"],"created_at":"2026-04-09T00:09:28.414Z","updated_at":"2026-04-09T00:09:29.143Z","avatar_url":"https://github.com/robotty.png","language":"Rust","funding_links":["https://github.com/sponsors/RAnders00","https://paypal.me/RAnders00","https://recent-messages.robotty.de/#donate"],"categories":[],"sub_categories":[],"readme":"# recent-messages2\n\n![Build CI status](https://github.com/robotty/recent-messages2/workflows/Build/badge.svg)\n\nThis is a rewrite of the [version 1 recent-messages service](https://github.com/robotty/recent-messages).\n\nSee https://recent-messages.robotty.de/ for all kinds of information you might want.\n\n## Build\n\n1. [Install Rust](https://www.rust-lang.org/tools/install)\n2. On Debian and Ubuntu: `sudo apt install build-essential`, For other operating systems I recommend you just try to proceed with step three and then try to fix the missing compiler programs/system libraries as they pop up\n3. `git clone https://github.com/robotty/recent-messages2.git \u0026\u0026 cd recent-messages2`\n4. `cargo build --release`\n5. The binary application will be ready in `./target/release/recent-messages2` (On Windows with the additional `.exe` suffix). The binary is statically linked and so can be moved to other directories or sent to remote machines without need for additional files.\n\n## Install\n\nThe `config.toml` is expected to be in the working directory of the process. Edit it to your use case before first startup:\n\n```\neditor config.toml\n```\n\nThe binary can be run with any process manager in the background (systemd etc.), or you can dockerize it. For testing purposes, you can use `cargo run --release`.\n\nA sample file for running it as a systemd unit is provided as `recent-messages2.service`.\n\n```\ncp ./recent-messages2.service /etc/systemd/system/recent-messages2.service\n```\n\nNow edit the service file to reflect your setup:\n\n```\nsudo editor /etc/systemd/system/recent-messages2.service\n```\n\nAnd start the service.\n\n```\nsudo systemctl daemon-reload\nsudo systemctl enable --now recent-messages2.service\n```\n\nView log output/service status:\n\n```\nsudo journalctl -efu recent-messages2.service\nsudo systemctl status recent-messages2.service\n```\n\nAlso, wherever you placed the service's working directory, ensure there is a directory called `messages` that is writable for the service. Messages will be persisted there between restarts.\n\n## Web\n\nInstructions for setting up the static website (like the \"official\" https://recent-messages.robotty.de/) are found in the [README in the `./web` directory of this repo](./web/README.md).\nThere you can also find an example nginx config.\n\n## Monitoring\n\nA prometheus metrics endpoint is exposed at `/api/v2/metrics`. You can import the `grafana-dashboard.json` in the repository as a dashboard template into a Grafana instance.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobotty%2Frecent-messages2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobotty%2Frecent-messages2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobotty%2Frecent-messages2/lists"}