A P2P and offline-first ActivityPub client for reading and following microblogs on the Fediverse, avoiding dependency on always-online HTTP servers, allowing access to content anytime, anywhere.
You can easily deploy a customized version of the reader by forking this repository and modifying the defaults.json
file located in the ./config
folder. This allows you to set the community name, define a custom theme, and specify the default followed actors for your community.
communityName
: The name of your community, which will appear as the page title and sidebar branding.theme
: Customize the appearance of the reader. You can specify:bgColor
: Background color for the reader.postBgColor
: Background color for individual posts.postDetailsColor
: Color for post details (such as date and metadata).postLinkColor
: Color for links within posts.
defaultFollowedActors
: A list of URLs representing the actors that will be followed by default when no actors are followed.
The
@[email protected]
account will notify when a new site is published, created using the Social Inbox.
{
"version": "1.2.0",
"communityName": "Akhi's Art Club",
"theme": {
"bgColor": "#ecfeff",
"postBgColor": "#cffafe",
"postDetailsColor": "#06b6d4",
"postLinkColor": "#0ea5e9"
},
"defaultFollowedActors": [
"https://social.distributed.press/v1/@[email protected]/",
"https://mastodon.social/@akhileshthite"
]
}
For more information, please visit docs.distributed.press.