fedimovies/README.md

167 lines
3.5 KiB
Markdown
Raw Permalink Normal View History

2023-04-27 20:00:02 +00:00
# FediMovies
[![status-badge](https://ci.caric.io/api/badges/FediMovies/fedimovies/status.svg)](https://ci.caric.io/FediMovies/fedimovies)
2021-04-09 00:22:17 +00:00
2023-04-27 20:00:02 +00:00
Lively federated movies reviews platform.
2021-04-09 00:22:17 +00:00
2022-07-11 00:48:33 +00:00
Built on [ActivityPub](https://www.w3.org/TR/activitypub/) protocol, self-hosted, lightweight. Part of the [Fediverse](https://en.wikipedia.org/wiki/Fediverse).
2022-02-08 01:36:40 +00:00
2023-02-27 13:28:34 +00:00
Features:
2022-02-08 01:36:40 +00:00
2023-02-27 13:28:34 +00:00
- Micro-blogging service (includes support for quote posts, custom emojis and more).
- Mastodon API.
2023-03-11 17:09:02 +00:00
- Account migrations (from one server to another). Identity can be detached from the server.
- Federation over Tor.
2021-04-09 00:22:17 +00:00
2023-02-27 13:28:34 +00:00
## Instances
2023-04-27 20:00:02 +00:00
- [FediList](http://demo.fedilist.com/instance?software=fedimovies)
- [Fediverse Observer](https://fedimovies.fediverse.observer/list)
2021-11-20 20:34:33 +00:00
2023-04-08 19:20:12 +00:00
Demo instance: https://nullpointer.social/ ([invite-only](https://nullpointer.social/about))
2022-04-13 10:43:19 +00:00
2022-09-13 20:38:50 +00:00
## Code
2023-04-08 19:29:03 +00:00
Server: https://code.caric.io/reef/reef (this repo)
2022-09-13 20:38:50 +00:00
2023-04-08 19:29:03 +00:00
Web client:
2022-09-13 20:38:50 +00:00
2021-04-09 00:22:17 +00:00
## Requirements
2023-04-15 13:28:09 +00:00
- Rust 1.57+ (when building from source)
2022-04-20 13:47:04 +00:00
- PostgreSQL 12+
Optional:
- IPFS node (see [guide](./docs/ipfs.md))
2021-04-09 00:22:17 +00:00
## Installation
### Building from source
Run:
```shell
cargo build --release --features production
```
2023-04-27 20:00:02 +00:00
This command will produce two binaries in `target/release` directory, `fedimovies` and `fedimoviesctl`.
2022-09-24 19:19:37 +00:00
Install PostgreSQL and create the database:
```sql
2023-04-27 20:00:02 +00:00
CREATE USER fedimovies WITH PASSWORD 'fedimovies';
CREATE DATABASE fedimovies OWNER fedimovies;
2022-09-24 19:19:37 +00:00
```
2023-04-27 20:00:02 +00:00
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.
2023-04-27 20:00:02 +00:00
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.
2023-04-27 20:00:02 +00:00
Start Fedimovies:
```shell
2023-04-27 20:00:02 +00:00
./fedimovies
```
2023-04-27 20:00:02 +00:00
An HTTP server will be needed to handle HTTPS requests. See the example of [nginx configuration file](./contrib/fedimovies.nginx).
2023-04-27 20:00:02 +00:00
To run Fedimovies as a systemd service, check out the [systemd unit file example](./contrib/fedimovies.service).
### Debian package
2023-04-27 20:00:02 +00:00
Download and install Fedimovies package:
```shell
2023-04-27 20:00:02 +00:00
dpkg -i fedimovies.deb
```
2022-09-24 19:19:37 +00:00
Install PostgreSQL and create the database:
```sql
2023-04-27 20:00:02 +00:00
CREATE USER fedimovies WITH PASSWORD 'fedimovies';
CREATE DATABASE fedimovies OWNER fedimovies;
2022-09-24 19:19:37 +00:00
```
2023-04-27 20:00:02 +00:00
Open configuration file `/etc/fedimovies/config.yaml` and configure the instance.
2023-04-27 20:00:02 +00:00
Start Fedimovies:
```shell
2023-04-27 20:00:02 +00:00
systemctl start fedimovies
```
2023-04-27 20:00:02 +00:00
An HTTP server will be needed to handle HTTPS requests. See the example of [nginx configuration file](./contrib/fedimovies.nginx).
2023-03-11 17:09:02 +00:00
### Tor federation
See [guide](./docs/onion.md).
2021-04-09 00:22:17 +00:00
## Development
2022-10-30 21:47:45 +00:00
See [CONTRIBUTING.md](./CONTRIBUTING.md)
2022-09-24 19:19:37 +00:00
### Start database server
2021-04-09 00:22:17 +00:00
```shell
2022-09-24 19:19:37 +00:00
docker-compose up -d
2021-04-09 00:22:17 +00:00
```
Test connection:
```shell
2023-04-27 20:00:02 +00:00
psql -h localhost -p 55432 -U fedimovies fedimovies
2021-04-09 00:22:17 +00:00
```
### Run web service
Create config file, adjust settings if needed:
2021-04-09 00:22:17 +00:00
```shell
2021-04-09 00:22:17 +00:00
cp config.yaml.example config.yaml
```
Compile and run service:
```shell
2021-04-09 00:22:17 +00:00
cargo run
```
### Run CLI
```shell
2023-04-27 20:00:02 +00:00
cargo run --bin fedimoviesctl
2021-04-09 00:22:17 +00:00
```
2021-11-13 17:37:31 +00:00
### Run linter
```shell
2021-11-13 17:37:31 +00:00
cargo clippy
```
2021-10-10 09:55:33 +00:00
### Run tests
```shell
2021-10-10 09:55:33 +00:00
cargo test
```
2021-11-14 20:09:46 +00:00
## Federation
2022-04-13 10:43:19 +00:00
See [FEDERATION.md](./FEDERATION.md)
2021-11-14 20:09:46 +00:00
## Client API
2021-04-09 00:22:17 +00:00
2023-04-27 20:00:02 +00:00
Most methods are similar to Mastodon API, but Fedimovies is not fully compatible.
2021-04-09 00:22:17 +00:00
2022-10-28 15:29:48 +00:00
[OpenAPI spec](./docs/openapi.yaml)
2021-12-03 15:29:50 +00:00
## CLI
2023-04-27 20:00:02 +00:00
`fedimoviesctl` is a command-line tool for performing instance maintenance.
2021-04-09 00:22:17 +00:00
2023-04-27 20:00:02 +00:00
[Documentation](./docs/fedimoviesctl.md)
2022-09-08 13:38:52 +00:00
2021-10-10 09:55:33 +00:00
## License
[AGPL-3.0](./LICENSE)