Movie reviews bot playground.
Go to file
2023-04-24 16:59:37 +02:00
.cargo Revert "Use "git" protocol to access crates.io" 2023-03-19 13:54:04 +04:00
contrib Rm web3 lolz 2023-04-08 21:29:03 +02:00
docs Add support for content warnings 2023-04-24 16:56:59 +02:00
files Add files directory, update readme 2021-11-26 22:39:54 +00:00
mitra-cli Bump version 2023-04-24 16:59:37 +02:00
mitra-config Bump version 2023-04-24 16:59:37 +02:00
mitra-models Bump version 2023-04-24 16:59:37 +02:00
mitra-utils Bump version 2023-04-24 16:59:37 +02:00
scripts Add contracts to debian package 2022-06-03 20:33:46 +00:00
src Add federation.i2p_proxy_url configuration parameter 2023-04-24 16:59:26 +02:00
.editorconfig Create workspace and move mitractl to a separate crate 2023-01-22 20:50:28 +00:00
.env Add cargo feature for making production build 2022-05-04 22:06:12 +00:00
.gitignore Add files directory, update readme 2021-11-26 22:39:54 +00:00
Cargo.lock Bump version 2023-04-24 16:59:37 +02:00
Cargo.toml Bump version 2023-04-24 16:59:37 +02:00
CHANGELOG.md Bump version 2023-04-24 16:59:37 +02:00
config.yaml.example No blockchain support 2023-04-24 16:10:25 +02:00
CONTRIBUTING.md Fix changelog 2022-12-27 21:07:34 +00:00
docker-compose.yaml Update monero containers 2022-12-12 22:54:48 +00:00
FEDERATION.md Add custom emojis section to FEDERATION.md 2023-03-02 18:39:54 +00:00
LICENSE Initial commit 2021-09-14 12:24:05 +00:00
README.md Update actix 2023-04-24 16:56:47 +02:00

Reef

Lively federated micro-blogging platform.

Built on ActivityPub protocol, self-hosted, lightweight. Part of the Fediverse.

Features:

  • Micro-blogging service (includes support for quote posts, custom emojis and more).
  • Mastodon API.
  • Account migrations (from one server to another). Identity can be detached from the server.
  • Federation over Tor.

Instances

Demo instance: https://nullpointer.social/ (invite-only)

Code

Server: https://code.caric.io/reef/reef (this repo)

Web client:

Requirements

  • Rust 1.57+ (when building from source)
  • PostgreSQL 12+

Optional:

Installation

Building from source

Run:

cargo build --release --features production

This command will produce two binaries in target/release directory, mitra and mitractl.

Install PostgreSQL and create the database:

CREATE USER mitra WITH PASSWORD 'mitra';
CREATE DATABASE mitra OWNER mitra;

Create configuration file by copying contrib/mitra_config.yaml and configure the instance. Default config file path is /etc/mitra/config.yaml, but it can be changed using CONFIG_PATH environment variable.

Put any static files into the directory specified in configuration file. Building instructions for mitra-web frontend can be found at https://codeberg.org/silverpill/mitra-web#project-setup.

Start Mitra:

./mitra

An HTTP server will be needed to handle HTTPS requests. See the example of nginx configuration file.

To run Mitra as a systemd service, check out the systemd unit file example.

Debian package

Download and install Mitra package:

dpkg -i mitra.deb

Install PostgreSQL and create the database:

CREATE USER mitra WITH PASSWORD 'mitra';
CREATE DATABASE mitra OWNER mitra;

Open configuration file /etc/mitra/config.yaml and configure the instance.

Start Mitra:

systemctl start mitra

An HTTP server will be needed to handle HTTPS requests. See the example of nginx configuration file.

Tor federation

See guide.

Development

See CONTRIBUTING.md

Start database server

docker-compose up -d

Test connection:

psql -h localhost -p 55432 -U mitra mitra

Run web service

Create config file, adjust settings if needed:

cp config.yaml.example config.yaml

Compile and run service:

cargo run

Run CLI

cargo run --bin mitractl

Run linter

cargo clippy

Run tests

cargo test

Federation

See FEDERATION.md

Client API

Most methods are similar to Mastodon API, but Mitra is not fully compatible.

OpenAPI spec

CLI

mitractl is a command-line tool for performing instance maintenance.

Documentation

License

AGPL-3.0