Movie reviews bot playground.
Go to file
Rafael Caricio d2075dcbd2
ci/woodpecker/push/woodpecker Pipeline failed Details
Apply clippy suggestions
2023-04-28 00:15:44 +02:00
.cargo Revert "Use "git" protocol to access crates.io" 2023-03-19 13:54:04 +04:00
build Support database connection via SSL 2023-04-26 12:07:36 +02:00
contrib Simplify deployment workflow 2023-04-26 12:54:48 +02:00
docs Add support for content warnings 2023-04-24 16:56:59 +02:00
fedimovies-cli Apply clippy suggestions 2023-04-28 00:01:24 +02:00
fedimovies-config Support database connection via SSL 2023-04-26 12:07:36 +02:00
fedimovies-models Apply clippy suggestions 2023-04-28 00:01:24 +02:00
fedimovies-utils Apply clippy suggestions 2023-04-28 00:01:24 +02:00
files Add files directory, update readme 2021-11-26 22:39:54 +00:00
scripts Add contracts to debian package 2022-06-03 20:33:46 +00:00
src Apply clippy suggestions 2023-04-28 00:15:44 +02:00
.dockerignore Simplify deployment workflow 2023-04-26 12:54:48 +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 Support database connection via SSL 2023-04-26 12:07:36 +02:00
.woodpecker.yml Fix fmt 2023-04-27 23:35:08 +02:00
CHANGELOG.md Bump version 2023-04-24 16:59:37 +02:00
CONTRIBUTING.md Fix changelog 2022-12-27 21:07:34 +00:00
Cargo.lock Make generic errors carry more details 2023-04-26 12:55:42 +02:00
Cargo.toml Rename to Fedimovies 2023-04-25 15:49:35 +02: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 readme 2023-04-27 22:00:02 +02:00
config.yaml.example No blockchain support 2023-04-24 16:10:25 +02:00
docker-compose.yaml Update monero containers 2022-12-12 22:54:48 +00:00
justfile Simplify deployment workflow 2023-04-26 12:54:48 +02:00

README.md

FediMovies

status-badge

Lively federated movies reviews 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, fedimovies and fedimoviesctl.

Install PostgreSQL and create the database:

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

Create configuration file by copying contrib/fedimovies_config.yaml and configure the instance. Default config file path is /etc/fedimovies/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 fedimovies-web frontend can be found at https://code.caric.io/FediMovies/fedimovies#project-setup.

Start Fedimovies:

./fedimovies

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

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

Debian package

Download and install Fedimovies package:

dpkg -i fedimovies.deb

Install PostgreSQL and create the database:

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

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

Start Fedimovies:

systemctl start fedimovies

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 fedimovies fedimovies

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 fedimoviesctl

Run linter

cargo clippy

Run tests

cargo test

Federation

See FEDERATION.md

Client API

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

OpenAPI spec

CLI

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

Documentation

License

AGPL-3.0