Start some docs for testing

This commit is contained in:
Ivan Habunek 2024-03-09 09:43:02 +01:00
parent 1709a416b3
commit 0cbb8863b3
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
1 changed files with 42 additions and 0 deletions

42
tests/README.md Normal file
View File

@ -0,0 +1,42 @@
Testing toot
============
This document is WIP.
Mastodon
--------
TODO
Pleroma
-------
TODO
Akkoma
------
Install using the guide here:
https://docs.akkoma.dev/stable/installation/docker_en/
Disable captcha and throttling by adding this to `config/prod.exs`:
```ex
# Disable captcha for testing
config :pleroma, Pleroma.Captcha,
enabled: false
# Disable rate limiting for testing
config :pleroma, :rate_limit,
authentication: nil,
timeline: nil,
search: nil,
app_account_creation: nil,
relations_actions: nil,
relation_id_action: nil,
statuses_actions: nil,
status_id_action: nil,
password_reset: nil,
account_confirmation_resend: nil,
ap_routes: nil
```