r/o

tasks/pleroma/user: add "activate_all_from_instance". 8f84b7d3 parent 4de7f44d

authored by Amelia Cuss

.gitea Put rich media processing in a Task 3 years ago
.woodpecker Migrate to phoenix 1.7 (#626)
3 years ago
benchmarks Merge branch 'log-slow-queries' into 'develop'
4 years ago
ci Merge branch 'more-efficient-ci' into 'develop'
4 years ago
config config: configure markup here, saving it causes Bad. 2 years ago
docker-resources Send a NIL body rather than an empty one with GET/HEAD 3 years ago
docs Merge pull request 'Disable busy waits in the default OTP `vm.args` configuration.' (#693) from erincandescent/akkoma:otp-tune-vm-busywait into develop
2 years ago
installation Send a NIL body rather than an empty one with GET/HEAD 3 years ago
lib tasks/pleroma/user: add "activate_all_from_instance". 2 years ago
priv scrubbers: allow td[align], th[align]. 2 years ago
rel Merge pull request 'Disable busy waits in the default OTP `vm.args` configuration.' (#693) from erincandescent/akkoma:otp-tune-vm-busywait into develop
2 years ago
restarter fix_flaky_transfer_task_test.exs (#237)
3 years ago
scripts Put rich media processing in a Task 3 years ago
test formatter: if we don't detect any mentions, fumble the request. 2 years ago
uploads Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma into develop 7 years ago
.buildpacks Merge branch 'develop' into feature/polls-2-electric-boogalo 7 years ago
.credo.exs Merge branch 'libmagic' into 'develop'
5 years ago
.dockerignore Docker builds (#231)
3 years ago
.formatter.exs Migrate to phoenix 1.7 (#626)
3 years ago
.gitattributes Put rich media processing in a Task 3 years ago
.gitignore flake.nix: init. 2 years ago
.mailmap Merge remote-tracking branch 'upstream/develop' into earmark 5 years ago
AGPL-3 Merge remote-tracking branch 'origin/develop' into features/mastoapi/2.6.0-conversations 7 years ago
CC-BY-4.0 Merge branch 'libmagic' into 'develop'
5 years ago
CC-BY-SA-4.0 Merge remote-tracking branch 'origin/develop' into features/mastoapi/2.6.0-conversations 7 years ago
CHANGELOG.md Add background_removal to SimplePolicy MRF 2 years ago
CODE_OF_CONDUCT.md Merge branch 'develop' into fedora-install 4 years ago
COPYING Merge pull request 'Remove reference to city.jpg in COPYING' (#310) from norm/akkoma:copying-city-jpg into develop
3 years ago
Dockerfile Bump builds to OTP26 3 years ago
Procfile Merge branch 'develop' into feature/polls-2-electric-boogalo 7 years ago
README.md Merge pull request 'Clean up bookmarks after prune_objects' (#544) from ilja/akkoma:clean_up_bookmarks_after_prune_objects into develop
3 years ago
SECURITY.md Merge branch 'libmagic' into 'develop'
5 years ago
SIGNING_KEY.pub 2022.09 stable release chores (#206)
4 years ago
coveralls.json Merge branch 'libmagic' into 'develop'
5 years ago
docker-compose.yml Merge pull request 'Add shm_size to the Database container' (#634) from EpicKitty/akkoma:develop into develop
2 years ago
docker-entrypoint.sh Docker builds (#231)
3 years ago
elixir_buildpack.config Merge pull request 'Clean up bookmarks after prune_objects' (#544) from ilja/akkoma:clean_up_bookmarks_after_prune_objects into develop
3 years ago
flake.lock flake.nix: remove duplicate inputs. 2 years ago
flake.nix flake.nix: use overlay here. 2 years ago
mix.exs markdown: use comrak via ex-markdown. 2 years ago
mix.lock formatter: use akkoma_autolinks, fix remaining tests. 2 years ago
mix.nix flake/mix.nix: fixup. 2 years ago

README.md

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

OTP releases (Recommended)

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