akkoma/README.md

382 lines
12 KiB
Markdown
Raw Normal View History

2023-09-26 20:29:26 +00:00
# BNAkkoma: Brand New Akkoma
2023-09-26 20:29:26 +00:00
<small>It's not that new. This is just a cheap pun on the title of a [furry anime](https://en.wikipedia.org/wiki/BNA:_Brand_New_Animal).</small>
2023-11-05 20:48:34 +00:00
Also keep in mind that B in BNAkkoma stands for 'bleeding-edge', **features can be added, changed or removed at any time!**
If you are experiencing any strange quirks, make sure both your frontend and backend are up to date.
If your software are up to date but the bug is still there, ping me on the fediverse at '@itepechi@fedi.itepechi.me'.
2023-08-03 21:28:11 +00:00
## What is this?
2023-07-29 15:47:22 +00:00
2023-08-03 21:28:11 +00:00
This is a fork of [AkkomaGang/akkoma](https://akkoma.dev/AkkomaGang/akkoma/), with some opinionated changes to satisfy my needs.
2023-07-29 15:47:22 +00:00
2023-08-03 21:28:11 +00:00
The main differences between this and the upstream repository are
2023-07-29 15:47:22 +00:00
- Uses the official Elixir image from Docker Hub
- Automatically builds the Akkoma backend when building the Docker image, instead of requiring complex commands after pulling/building images
- Files/directories to mount are minified and completely separated from the repository files, allowing better control over file permissions
2023-08-03 21:28:11 +00:00
- Has an actual Docker entry point, rather than a command that pretends to be an entry point
2023-08-05 18:59:16 +00:00
- Includes out-of-the-box support for [PGroonga](https://pgroonga.github.io/), the fast and accurate full-text search extension for PostgreSQL
2023-09-26 20:29:26 +00:00
- Added support for searching media posts, which I really needed
- Added support to search for posts from people you follow, which is nice to have
- These search extensions are configurable, so simply turn off if you don't want them
2023-09-15 22:56:18 +00:00
- Includes some improvements to the initial configuration wizard
2023-11-05 20:48:34 +00:00
- Added OpenSearch protocol support
2023-09-26 20:29:26 +00:00
- Improved PWA support, sort of
2023-07-29 15:47:22 +00:00
- Supports Podman quite well
2023-08-05 18:59:16 +00:00
## How to setup (Podman Rootless)
2023-08-01 20:08:25 +00:00
_You don't need to replicate backslashes followed by line breaks. They mean "Ignore the next line break" and are only used for better readability. `a \<line break> b \<line break> c` is the same as `a b c`._
2023-08-01 20:08:25 +00:00
### 0. Requirements
- A decent CPU
2023-09-15 22:56:18 +00:00
- 2GB memory (200MB runtime +300MB if you want to use Meilisearch)
2023-08-01 20:08:25 +00:00
- 500MB free disk space
- Podman runs as non-root user
### 1. Build your image
2023-08-03 21:28:11 +00:00
This will take 5+ minutes.
2023-08-01 20:08:25 +00:00
```sh
cd /YOUR/GIT/DIRECTORY/akkoma/
podman build -t akkoma .
```
### 2. Create a Podman Pod for Akkoma
```sh
podman pod create \
--publish YOUR_PORT:4000 \
akkoma
```
You can use **pasta(1)** if you want to preserve incoming IPs and easily access the host machine through the network gateway.
```sh
podman pod create \
--network pasta:--map-gw,-a,10.0.2.0,-n,24,-g,10.0.2.1 \
--add-host gateway:10.0.2.1 \
--publish YOUR_PORT:4000 \
akkoma
```
2023-09-15 22:56:18 +00:00
### 3. Set up the database
2023-08-01 20:08:25 +00:00
```sh
podman run -d \
--pod akkoma \
--restart unless-stopped \
--name akkoma-db \
-e POSTGRES_DB=YOUR_DB_NAME \
-e POSTGRES_USER=YOUR_DB_USER \
-e POSTGRES_PASSWORD=YOUR_DB_PASS \
-v ${PWD}/docker-db/:/var/lib/postgresql/data/:Z \
postgres:14-alpine
```
If you want to use PGroonga, run the command below instead.
```sh
podman run -d \
--pod akkoma \
--restart unless-stopped \
--name akkoma-db \
-e POSTGRES_DB=YOUR_DB_NAME \
-e POSTGRES_USER=YOUR_DB_USER \
-e POSTGRES_PASSWORD=YOUR_DB_PASS \
-v ${PWD}/docker-db/:/var/lib/postgresql/data/:Z \
groonga/pgroonga:3.1.1-alpine-14
```
2023-09-15 22:56:18 +00:00
### 4. Set up the backend
2023-08-01 20:08:25 +00:00
```sh
podman run -d \
--pod akkoma-pod \
--restart unless-stopped \
--name akkoma-web \
-e DB_NAME=YOUR_DB_NAME \
-e DB_USER=YOUR_DB_USER \
-e DB_PASS=YOUR_DB_PASS \
-v ${PWD}/static/:/var/lib/akkoma/static/:Z \
-v ${PWD}/uploads/:/var/lib/akkoma/uploads/:Z \
-v ${PWD}/etc/:/etc/akkoma/:Z \
akkoma
podman exec -it akkoma-web \
pleroma_ctl \
instance gen \
--output /etc/akkoma/config.exs
```
2023-08-05 18:59:16 +00:00
A few notes on setup
2023-08-01 20:08:25 +00:00
2023-08-05 18:59:16 +00:00
- Make sure your database hostname is set correctly (e.g. localhost)
2023-08-06 09:48:24 +00:00
- Make sure your database password is set correctly, don't leave it as _autogenerated_
2023-08-05 18:59:16 +00:00
- You should set the IP to listen on to 0.0.0.0
2023-08-06 09:48:24 +00:00
### 4.1. Apply optional migration to enable PGroonga
_This step is optional._
Make sure you apply the migration **before** the first restart of the container, otherwise you will be stuck in a loop of restarts.
2023-08-06 09:48:24 +00:00
To apply the migration after the first restart, please refer to [the guide down below](#switch-to-pgroonga).
```sh
podman exec -it akkoma-web \
pleroma_ctl \
migrate \
--migrations-path priv/repo/optional_migrations/pgroonga
```
2023-08-05 23:05:02 +00:00
You can revert the applied changes at any time by replacing `migrate` with `rollback`.
2023-09-15 22:56:18 +00:00
### 4.2 Set up Meilisearch if you want to search with it
_This step is optional._
```sh
podman run -d \
--pod akkoma-pod \
--restart unless-stopped \
--name akkoma-meili \
-e MEILI_NO_ANALYTICS=true \
-v ${PWD}/meili_data/:/meili_data/:Z \
getmeili/meilisearch:v1.3
```
Don't forget to update your configuration to use Meilisearch.
```ex
# Example configuration
config :pleroma, Pleroma.Search, module: Pleroma.Search.Meilisearch
config :pleroma, Pleroma.Search.Meilisearch, url: "http://localhost:7700/"
```
To learn how to feed the Meilisearch index with your existing posts, if you have them, please see [the guide below](#initial-indexing-with-meilisearch).
For other questions, see [the official documentation](https://docs.akkoma.dev/stable/configuration/search/#meilisearch).
2023-08-01 20:08:25 +00:00
### 5. Test your setup
```sh
podman restart akkoma-web
curl -I http://localhost:YOUR_PORT/
```
You should see `HTTP/1.1 200 OK`.
2023-09-15 22:56:18 +00:00
### 6. Set up the frontend
2023-08-01 20:08:25 +00:00
```sh
podman exec -it akkoma-web \
pleroma_ctl \
frontend install \
pleroma-fe
```
```sh
podman exec -it akkoma-web \
pleroma_ctl \
frontend install \
admin-fe
```
### 7. Create your first user
```sh
podman exec -it akkoma-web \
pleroma_ctl \
user new \
YOUR_NAME \
YOUR@EMAIL.EXAMPLE \
--admin
```
2023-08-05 18:59:16 +00:00
Follow the printed link to set your password.
2023-08-01 20:08:25 +00:00
2023-08-06 09:48:24 +00:00
### 8. Bonus steps
Keep in mind that all of these steps are optional.
#### Switch to PGroonga
2023-08-05 23:15:04 +00:00
Before proceeding, make sure that `config :pleroma, :database, pgroonga_enabled` is set to `false`.
```ex
2023-09-26 20:29:26 +00:00
# Example configuration
config :pleroma, :database,
rum_enabled: false,
pgroonga_enabled: false
```
Then, run the command below to apply optional migrations to switch to PGroonga.
```sh
podman exec -it akkoma-web \
pleroma_ctl \
migrate \
--migrations-path priv/repo/optional_migrations/pgroonga
```
After running the migration, change `config :pleroma, :database, pgroonga_enabled` to `true`.
```ex
2023-09-26 20:29:26 +00:00
# Example configuration
config :pleroma, :database,
rum_enabled: false,
2023-09-26 20:29:26 +00:00
pgroonga_enabled: true
```
Don't forget to restart your backend for the changes to take effect.
```sh
podman restart akkoma-web
```
You can revert the applied changes at any time by replacing `migrate` with `rollback`.
#### Change PGroonga indexing options
By default, PGroonga uses a bigram tokenizer with prefix matching enabled.
If you're not happy with this, you can change the behavior using the `database set_pgroonga_options` command.
2023-08-05 23:34:08 +00:00
If you want to support Japanese in your instance, and do not want "京都" (Kyoto) to match "東京都" (Tokyo-to), pass `TokenMecab` as the tokenizer.
```sh
podman exec -it akkoma-web \
pleroma_ctl \
database \
set_pgroonga_options "tokenizer='TokenMecab'"
```
2023-08-05 23:15:04 +00:00
If you want to disable prefix matching, e.g. you want "akko" to match "Akko is cute!" but not "Akkoma is cool!", pass `hash_table` as lexicon type.
```sh
podman exec -it akkoma-web \
pleroma_ctl \
database \
set_pgroonga_options "lexicon_type='hash_table'"
```
If you want to set multiple options, simply concatenate them with a comma.
2023-08-05 23:15:04 +00:00
_Do not add spaces after commas or Elixir will complain. **You have been warned!**_
```sh
podman exec -it akkoma-web \
pleroma_ctl \
database \
set_pgroonga_options "tokenizer='TokenMecab',lexicon_type='hash_table'"
```
2023-09-15 22:56:18 +00:00
#### Initial indexing with Meilisearch
If you have posts that were made before Meilisearch was enabled, run the command below to index them.
```sh
podman exec -it akkoma-web \
pleroma_ctl \
search.meilisearch \
index
```
2023-11-05 20:48:34 +00:00
### 9. Troubleshooting
#### PGroonga search not working as expected
Please make sure that you've applied all migrations using `pleroma_ctl migrate --migrations-path priv/repo/optional_migrations/pgroonga`, then set the options using `pleroma_ctl database set_pgroonga_options`.
Read more at ['Switch to PGroonga'](#switch-to-pgroonga) and ['Change PGroonga indexing options'](#change-pgroonga-indexing-options).
#### Fails to install Pleroma-FE
This sometimes happens. Try installing again later.
2023-07-29 15:47:22 +00:00
---
2023-08-01 20:02:39 +00:00
## Akkoma
2022-06-14 15:24:03 +00:00
2023-08-01 20:02:39 +00:00
_a smallish microblogging platform, aka the cooler pleroma_
2022-06-14 15:24:03 +00:00
2023-07-29 15:47:22 +00:00
![English OK](https://img.shields.io/badge/English-OK-blueviolet?style=for-the-badge) ![日本語OK](https://img.shields.io/badge/%E6%97%A5%E6%9C%AC%E8%AA%9E-OK-blueviolet?style=for-the-badge)
2022-08-23 15:10:19 +00:00
2023-07-29 15:47:22 +00:00
## About
2017-03-17 16:09:58 +00:00
This is a fork of Pleroma, which is a microblogging server software that can federate (= exchange messages with) other servers that support ActivityPub. What that means is that you can host a server for yourself or your friends and stay in control of your online identity, but still exchange messages with people on larger servers. Akkoma will federate with all servers that implement ActivityPub, like Friendica, GNU Social, Hubzilla, Mastodon, Misskey, Peertube, and Pixelfed.
2022-11-10 09:00:39 +00:00
Akkoma is written in Elixir and uses PostgreSQL for data storage.
2017-09-01 10:50:44 +00:00
For clients it supports the [Mastodon client API](https://docs.joinmastodon.org/api/guidelines/) with Pleroma extensions (see the API section on <https://docs.akkoma.dev/stable/>).
2018-11-11 16:31:16 +00:00
- [Client Applications for Akkoma](https://docs.akkoma.dev/stable/clients/)
2017-09-01 10:50:44 +00:00
2022-11-06 23:57:43 +00:00
## Differences with Pleroma
Akkoma is a faster-paced fork, it has a varied and potentially experimental feature set tailored specifically to the corner of the fediverse inhabited by the project
creator and contributors.
This should not be considered a one-for-one match with pleroma; it is more opinionated in many ways, and has a smaller community (which is good or
bad depending on your view)
For example, Akkoma has:
2023-07-29 15:47:22 +00:00
2022-11-06 23:57:43 +00:00
- Custom Emoji reactions (compatible with misskey)
- Misskey-flavoured markdown support
- Elasticsearch and Meilisearch support for search
- Mastodon frontend (Glitch-Soc and Fedibird flavours) support
- Automatic post translation via DeepL or LibreTranslate
- A multitude of heavy modifications to the Pleroma Frontend (Pleroma-FE)
- The "bubble" concept, in which instance administrators can choose closely-related instances to make a "community of communities", so to say
And takes a more opinionated stance on issues like Domain blocks, which are enforced far more on Akkoma.
Take a look at the Changelog if you want a full list of recent changes, everything since 3.0 has been Akkoma.
## Installation
2017-09-16 10:07:50 +00:00
### OTP releases (Recommended)
2023-07-29 15:47:22 +00:00
If you are running Linux (glibc or musl) on x86, the recommended way to install Akkoma is by using OTP releases. OTP releases are as close as you can get to binary releases with Erlang/Elixir. The release is self-contained, and provides everything needed to boot it. The installation instructions are available [here](https://docs.akkoma.dev/stable/installation/otp_en/).
2017-09-16 10:07:50 +00:00
### From Source
2023-07-29 15:47:22 +00:00
If your platform is not supported, or you just want to be able to edit the source code easily, you may install Akkoma from source.
2017-09-01 10:50:44 +00:00
- [Alpine Linux](https://docs.akkoma.dev/stable/installation/alpine_linux_en/)
- [Arch Linux](https://docs.akkoma.dev/stable/installation/arch_linux_en/)
- [Debian-based](https://docs.akkoma.dev/stable/installation/debian_based_en/)
- [FreeBSD](https://docs.akkoma.dev/stable/installation/freebsd_en/)
- [Gentoo Linux](https://docs.akkoma.dev/stable/installation/gentoo_en/)
- [NetBSD](https://docs.akkoma.dev/stable/installation/netbsd_en/)
- [OpenBSD](https://docs.akkoma.dev/stable/installation/openbsd_en/)
2018-04-13 09:46:58 +00:00
### Docker
2023-07-29 15:47:22 +00:00
2022-11-11 16:12:04 +00:00
Docker installation is supported via [this setup](https://docs.akkoma.dev/stable/installation/docker_en/)
2018-04-13 09:46:58 +00:00
2023-04-03 09:18:28 +00:00
### Packages
2023-07-29 15:47:22 +00:00
2023-04-03 09:18:28 +00:00
Akkoma is packaged for [YunoHost](https://yunohost.org) and can be found and installed from the [YunoHost app catalogue](https://yunohost.org/#/apps).
### Compilation Troubleshooting
2023-07-29 15:47:22 +00:00
If you ever encounter compilation issues during the updating of Akkoma, you can try these commands and see if they fix things:
- `mix deps.clean --all`
- `mix local.rebar`
- `mix local.hex`
- `rm -r _build`
## Documentation
2023-07-29 15:47:22 +00:00
- https://docs.akkoma.dev/stable
2022-11-11 16:12:04 +00:00
- https://docs.akkoma.dev/develop