A federated online encyclopedia
Go to file
Felix Ableitner 1d6855bdc4 Move instructions to wiki 2024-03-08 16:09:51 +01:00
assets Build release binaries in CI (#18) 2024-03-06 17:03:10 +01:00
config fix default config 2024-02-28 12:24:13 +01:00
migrations Implement protect article function 2024-03-05 16:06:27 +01:00
scripts Add release script 2024-03-08 15:28:52 +01:00
src Upgrade apub lib 2024-03-08 14:58:29 +01:00
tests Never use https in SSR mode, some more bug fixes 2024-03-08 14:29:29 +01:00
.gitignore simplify trunk setup 2024-01-11 16:21:44 +01:00
.rustfmt.toml Use nightly cargo fmt for better imports formatting 2024-03-05 16:38:07 +01:00
.woodpecker.yml Add release script 2024-03-08 15:28:52 +01:00
Cargo.lock Upgrade apub lib 2024-03-08 14:58:29 +01:00
Cargo.toml Upgrade apub lib 2024-03-08 14:58:29 +01:00
LICENSE add agpl license 2023-11-15 01:38:16 +01:00
README.md Move instructions to wiki 2024-03-08 16:09:51 +01:00
Trunk.toml add scripts for watch/federate 2024-01-30 12:32:02 +01:00
build.rs Never use https in SSR mode, some more bug fixes 2024-03-08 14:29:29 +01:00
config.toml Use include_str! to allow deployment as single binary 2024-02-28 18:31:46 +01:00
diesel.toml wip: Add diesel and postgres 2023-11-30 11:46:42 +01:00

README.md

Ibis - A federated Wikipedia Alternative

A federated Wikipedia alternative. Main objects in terms of federation are the Instance and Article. Each article belongs to a single origin instance, the one where it was originally created. Articles have a collection of Edits a custom ActivityPub type containing a diff. The text of any article can be built by starting from empty string and applying all associated edits in order. Instances can synchronize their articles with each other, and follow each other to receive updates about articles. Edits are done with diffs which are generated on the backend, and allow for conflict resolution similar to git. Editing also works over federation. In this case an activity Update/Edit is sent to the origin instance. If the diff applies cleanly, the origin instance sends the new text in an Update/Article activity to its followers. In case there is a conflict, a Reject activity is sent back, the editor needs to resolve and resubmit the edit.

Name

The Ibis is a bird which is related to the Egyptian god of knowledge and science.

Development

First install PostgreSQL and setup the development database:

psql -c "CREATE USER ibis WITH PASSWORD 'ibis' SUPERUSER;" -U postgres
psql -c "CREATE DATABASE ibis WITH OWNER ibis;" -U postgres

You need to install cargo, trunk and cargo watch. Run ./scripts/watch.sh which automatically rebuilds the project after changes. Then open the site at 127.0.0.1:8080.

By default the frontend runs on port 8080, which can be changed with env var TRUNK_SERVE_PORT. The backend port is 8081 and can be changed with IBIS_BACKEND_PORT.

License

AGPL