update README

This commit is contained in:
Luna 2022-11-20 03:00:43 -03:00
parent 94e6350660
commit b1fc6608c9
2 changed files with 10 additions and 3 deletions

View file

@ -1,4 +1,7 @@
LOCAL_DOMAIN=mastodon.pubtester.local LOCAL_DOMAIN=mastodon.pubtester.local
RAILS_ENV=development
VAGRANT=true
ALTERNATE_DOMAINS=mastodon.pubtester.local:20000
BIND=0.0.0.0 BIND=0.0.0.0
REDIS_HOST=mastodon_redis REDIS_HOST=mastodon_redis

View file

@ -2,17 +2,21 @@
a set of scripts to spin up local environments containing many fediverse implementations for federation testing a set of scripts to spin up local environments containing many fediverse implementations for federation testing
at the moment only two instances of pleroma are generated.
mastodon is TODO.
## setup ## setup
add the following to your `/etc/hosts` add the following to your `/etc/hosts`
``` ```
127.0.0.1 mastodon.pubtester.local localhost
127.0.0.1 pleroma.pubtester.local localhost 127.0.0.1 pleroma.pubtester.local localhost
127.0.0.1 pleroma2.pubtester.local localhost
``` ```
run run
``` ```
git clone ... && cd pubtester git clone ... && cd pubtester
./mastodon_setup.sh ./pleroma_setup.sh
docker-compose up docker-compose up -d pleroma_web pleroma2_web nginx
``` ```