Magically expressive social media
Find a file
Mikael Voss c48f5d57b6
Use magick command from ImageMagick
With ImageMagick version 7 the convert command has been deprecated in
favour of magick. Calling convert instead results in the logs being
spammed with warning messages.

The mogrify Elixir wrapper also runs magick with the mogrify argument
in current releases.
2024-11-19 20:53:57 +01:00
.gitea/issue_template
.woodpecker ci: retry failed tasks once 2024-06-27 18:29:45 +02:00
benchmarks
ci
config Disable Ecto query logging in tests 2024-06-27 18:29:45 +02:00
diagnostic-tools add diagnostic script 2024-06-10 15:10:47 +01:00
docker-resources
docs Fix swagger-ui 2024-06-27 18:29:45 +02:00
installation Don't busy wait in default from-source service files 2024-09-24 17:36:54 +02:00
lib Use magick command from ImageMagick 2024-11-19 20:53:57 +01:00
priv standardise local key id generation 2024-10-30 12:44:01 +00:00
rel
restarter
scripts
test Merge remote-tracking branch 'oneric/varfixes' into develop 2024-10-30 15:15:00 +00:00
uploads
.credo.exs
.dockerignore
.formatter.exs
.gitattributes Don't treat js/css as binary in git anymore 2022-12-23 18:03:14 +00:00
.gitignore
.mailmap
AGPL-3
CC-BY-4.0 Add a copy of CC-BY-4.0 to the repo 2020-09-06 11:38:38 +03:00
CC-BY-SA-4.0
CHANGELOG.md Merge remote-tracking branch 'oneric/varfixes' into develop 2024-10-30 15:15:00 +00:00
CODE_OF_CONDUCT.md
COPYING
docker-compose.yml
docker-entrypoint.sh Fix busywait on docker-entrypoint script 2024-08-20 19:29:11 -03:00
Dockerfile
FEDERATION.md Document AP and nodeinfo extensions 2024-05-26 19:04:06 +02:00
mix.exs Merge remote-tracking branch 'oneric/varfixes' into develop 2024-10-30 15:15:00 +00:00
mix.lock Merge remote-tracking branch 'oneric/varfixes' into develop 2024-10-30 15:15:00 +00:00
README.md Add YunoHost to installation guides 2023-04-03 11:22:53 +02:00
SECURITY.md
SIGNING_KEY.pub

akkoma

a smallish microblogging platform, aka the cooler pleroma

English OK 日本語OK

About

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.

Akkoma is written in Elixir and uses PostgreSQL for data storage.

For clients it supports the Mastodon client API with Pleroma extensions (see the API section on https://docs.akkoma.dev/stable/).

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:

  • 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

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.

From Source

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.

Docker

Docker installation is supported via this setup

Packages

Akkoma is packaged for YunoHost and can be found and installed from the YunoHost app catalogue.

Compilation Troubleshooting

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