MewsFeed is a micro-blogging platform built with Holochain.
Visit mewsfeed.social to be notified of our release!
Collaborate on GitHub, join our Discord, and donate on OpenCollective!
MewsFeed is built with the distributed app development framework Holochain. Practically, this means that users either host themselves on their own devices or access a web version through the Holo hosting infrastructure.
Here is how to decide which version to use:
You like to experiment with the tools you use and enjoy having access to the data you use.
π» Install MewsFeed locally, either as a Desktop App with Kangaroo or in the Holochain Launcher.
This way you can analyze your data, connect it to other tools, and tinker around.
You like to publish good posts and interact with your audience wherever you are.
π² Sign up for an account on app.mewsfeed.social.
This way you can use it from any device through the browser. Alternatively, install MewsFeed locally and you'll be able to create content even when you're offline.
You want to stay anonymous, shitpost, and interact with interesting accounts.
π» Install MewsFeed locally, either as a Desktop App with Kangaroo or in the Holochain Launcher.
This way you have access to your posts even when you don't have internet.
You mostly just want to follow others for their content and stay informed of what's happening.
π² Sign up for an account on app.mewsfeed.social and use it from any device through the browser.
Alternatively, if you only browse content from your laptop or desktop, install it locally.
Either way, you'll be able to follow people and read their stuff.
You like following cool accounts, interacting with your friends, and having interesting conversations.
π» Install MewsFeed locally, either as a Desktop App with Kangaroo or in the Holochain Launcher.
This way you can access your favorite content and send replies to your friends even when you're offline. Alternatively, sign up on app.mewsfeed.social and use it from any device through the browser.
Download the latest release of the Desktop App here: MewsFeed Kangaroo.
Once installed, you'll be greeted by the Explore page.
You have the ability to navigate around immediately (e.g. your feed).
When you try to post your first Mew (i.e. Post), you'll be prompted with the profile setup modal.
Set up your profile and start using the app!
Download the latest release of Holochain Launcher here: Holochain Launcher.
Install the Launcher, run it, and create a password (save it somewhere safe!). Then navigate to the hApp Store.
Install MewsFeed by clicking on it and hitting install.
If no peers are online to download it from, head to the GitHub Releases page and download the latest .webhapp file
Then click "Select from filesystem" in the Launcher and select the file from your Downloads folder.
Leave the network seed blank if you want to join the regular MewsFeed network.
(Sidenote: if you want to set up a private version of MewsFeed for your community, just add a network seed and instruct your community members to also put that same seed into the box at install time to join your network)
You'll have to go through the same profile setup steps as described in the section on installing as desktop app.
This one is the easiest option. Just head on over to app.mewsfeed.social, sign up for an account, fill out your profile, and start using the platform!
Come join us on mewsfeed. We're talking at the hashtags #mewsfeed and #holochain. Share your feedback by tagging #mewsfeedback!
You can follow the team on mewsfeed at:
@artbrock @bierlingm @mattyg @jost
- Install the holochain dev environment (only nix-shell is required): https://developer.holochain.org/docs/install/
- Enable Holochain cachix with:
nix-env -iA cachix -f https://cachix.org/api/v1/install
cachix use holochain-ci
- Clone this repo and
cd
inside of it. - Enter the nix shell by running this in the root folder of the repository:
nix develop
npm install
This will install all the needed dependencies in your local environment, including holochain
, hc
and npm
.
## Building the DNA
- Build the DNA (assumes you are still in the nix shell for correct rust/cargo versions from step above):
```bash
npm run build:happ
npm run test
To test out the UI:
npm start
To run another agent, open another terminal, and execute again:
npm start
Each new agent that you create this way will get assigned its own port and get connected to the other agents.
- Get a copy of the Holo envoy server directly from a Holo team member, copy it to the root of the directory as
holo-dev-server
To test out a holo hosted agent:
npm start:agent:holo
To package the web happ:
npm run package
You'll have the mewsfeed.webhapp
in workdir
. This is what you should distribute so that the Holochain Launcher can install it.
You will also have its subcomponent mewsfeed.happ
in the same folder`.
We are using this tooling:
- NPM Workspaces: npm v7's built-in monorepo capabilities.
- hc: Holochain CLI to easily manage Holochain development instances.
- @holochain/tryorama: test framework.
- @holochain/conductor-api: client library to connect to Holochain from the UI.