9e3df495dc
⭐️ This is the way.
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
29 lines
508 B
Markdown
29 lines
508 B
Markdown
# Relay
|
|
|
|
Manages remote relays
|
|
|
|
!!! tip "Environment"
|
|
You need to run these commands with the appropriate environment loaded, so probably prefix with `MIX_ENV=prod`.
|
|
|
|
## Make your instance follow a mobilizon instance
|
|
|
|
```bash
|
|
mix mobilizon.relay follow <relay_host>
|
|
```
|
|
|
|
Example:
|
|
```bash
|
|
mix mobilizon.relay follow example.org
|
|
```
|
|
|
|
## Make your instance unfollow a mobilizon instance
|
|
|
|
```bash
|
|
mix mobilizon.relay unfollow <relay_host>
|
|
```
|
|
|
|
Example:
|
|
```bash
|
|
mix mobilizon.relay unfollow example.org
|
|
```
|