{"id":25026000,"url":"https://github.com/reiver/relayverse","last_synced_at":"2026-05-16T06:41:01.841Z","repository":{"id":275961946,"uuid":"926977444","full_name":"reiver/relayverse","owner":"reiver","description":"relayverse is an actor caching server for decentralized social-media (DeSo), including the Fediverse.","archived":false,"fork":false,"pushed_at":"2025-07-21T23:24:06.000Z","size":33,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-22T06:20:48.143Z","etag":null,"topics":["activitypub","activitystreams","caching","decentralized-social","fediverse","json-ld","social-media","social-web"],"latest_commit_sha":null,"homepage":"","language":"Go","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/reiver.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}},"created_at":"2025-02-04T07:30:23.000Z","updated_at":"2025-07-21T23:24:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"52a198d3-f40e-4d8a-a828-efc59d810000","html_url":"https://github.com/reiver/relayverse","commit_stats":null,"previous_names":["reiver/relayverse"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/reiver/relayverse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reiver%2Frelayverse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reiver%2Frelayverse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reiver%2Frelayverse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reiver%2Frelayverse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reiver","download_url":"https://codeload.github.com/reiver/relayverse/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reiver%2Frelayverse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281403410,"owners_count":26495042,"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-10-28T02:00:06.022Z","response_time":60,"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":["activitypub","activitystreams","caching","decentralized-social","fediverse","json-ld","social-media","social-web"],"created_at":"2025-02-05T17:18:23.193Z","updated_at":"2025-10-28T07:39:56.384Z","avatar_url":"https://github.com/reiver.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# relayverse\n\n**relayverse** is an actor caching server for decentralized social-media (DeSo), including the Fediverse.\n\n## URLs\n\nThere are 3 important URLs for **relayverse**:\n\n* `/.well-known/acct-cache?resource=???`\n* `/.well-known/acct-icon?resource=???`\n* `/.well-known/acct-image?resource=???`\n\nWhere `???` is replace by a acct-URI.\n\nFor example:\n\n* `https://example.com/.well-known/acct-cache?resource=acct:reiver@mastodon.social`\n* `https://example.com/.well-known/acct-icon?resource=acct:reiver@mastodon.social`\n* `https://example.com/.well-known/acct-image?resource=acct:reiver@mastodon.social`\n\n### acct-cache\n\nThe `acct-cache` style URL returns the (cached) activity-JSON (`application/activity+json`) file for the account.\n\n### acct-icon\n\nThe `acct-icon` style URL redirects to the icon-url for the account, as provided in (cached) activity-JSON (`application/activity+json`) file.\n\nYou can put this type of URL into an HTML `\u003cimg\u003e` element.\nFor example:\n\n```html\n\u003cimg src=\"https://example.com/.well-known/acct-icon?resource=acct:reiver@mastodon.social\" /\u003e\n```\n\n### acct-image\n\nThe `acct-image` style URL redirects to the image-url for the account, as provided in (cached) activity-JSON (`application/activity+json`) file.\n\nYou can put this type of URL into an HTML `\u003cimg\u003e` element.\nFor example:\n\n```html\n\u003cimg src=\"https://example.com/.well-known/acct-image?resource=acct:reiver@mastodon.social\" /\u003e\n```\n\n## Fediverse ID\n\nA **Fediverse ID** (i.e., **Fediverse Address**), such as:\n\n`@reiver@mastodon.social`\n\nCan be turned into an acct-URI — by replacing the first `@` with `acct:`, as in:\n\n`acct:reiver@mastodon.social`\n\n## Configuration\n\nThere are 3 environment variables that can be used to configure **relayverse**:\n\n* `CACHE_GC_SLEEP`\n* `CACHE_MIN`\n* `PORT`\n\n### `CACHE_GC_SLEEP`\n\n`CACHE_GC_SLEEP` sets the minimum duration that the cache garbage-collector sleeps for before it cleans-up again.\nFor example:\n\n`CACHE_GC_SLEEP=1h20m30s relayverse`\n\n### `CACHE_MIN`\n\n`CACHE_MIN` sets the minimum duration that things are cached for.\nFor example:\n\n`CACHE_MIN=10m20s relayverse`\n\n### `PORT`\n\n`PORT` sets the TCP-port used by the HTTP server.\nFor example:\n\n`PORT=9090 relayverse`\n\n## Author\n\nSoftware **relayverse** was written by [Charles Iliya Krempeaux](http://reiver.link)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freiver%2Frelayverse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freiver%2Frelayverse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freiver%2Frelayverse/lists"}