mirror of https://gitlab.com/bashrc2/epicyon
Announce option
parent
663d5cac4a
commit
0e22f92f48
23
README.md
23
README.md
|
@ -330,7 +330,7 @@ python3 epicyon.py --domain [name] --port 8000 --https --federate domain1.net do
|
||||||
With your server running you can then follow other accounts with:
|
With your server running you can then follow other accounts with:
|
||||||
|
|
||||||
``` bash
|
``` bash
|
||||||
python3 epicyon.py --nickname [yournick] --domain [name] --follow othernick@domain --password mypass
|
python3 epicyon.py --nickname [yournick] --domain [name] --follow othernick@domain --password [mypass]
|
||||||
```
|
```
|
||||||
|
|
||||||
The password is for the client to obtain access to the server.
|
The password is for the client to obtain access to the server.
|
||||||
|
@ -340,7 +340,7 @@ You may or may not need to use the *--port*, *--https* and *--tor* options, depe
|
||||||
Unfollowing is silimar:
|
Unfollowing is silimar:
|
||||||
|
|
||||||
``` bash
|
``` bash
|
||||||
python3 epicyon.py --nickname [yournick] --domain [name] --unfollow othernick@domain --password mypass
|
python3 epicyon.py --nickname [yournick] --domain [name] --unfollow othernick@domain --password [mypass]
|
||||||
```
|
```
|
||||||
|
|
||||||
## Sending posts
|
## Sending posts
|
||||||
|
@ -351,7 +351,7 @@ To send a post:
|
||||||
python3 epicyon.py --nickname [yournick] --domain [name] \
|
python3 epicyon.py --nickname [yournick] --domain [name] \
|
||||||
--sendto othernick@domain --message "hello" \
|
--sendto othernick@domain --message "hello" \
|
||||||
--warning "This is a content warning" \
|
--warning "This is a content warning" \
|
||||||
--password mypass
|
--password [mypass]
|
||||||
```
|
```
|
||||||
|
|
||||||
The password is the c2s password for your account.
|
The password is the c2s password for your account.
|
||||||
|
@ -364,7 +364,22 @@ python3 epicyon.py --nickname [yournick] --domain [name] \
|
||||||
--warning "bee-related content" --attach bees.png \
|
--warning "bee-related content" --attach bees.png \
|
||||||
--imagedescription "bees on flowers" \
|
--imagedescription "bees on flowers" \
|
||||||
--blurhash \
|
--blurhash \
|
||||||
--password mypass
|
--password [mypass]
|
||||||
|
```
|
||||||
|
|
||||||
|
## Announcements/repeats/boosts
|
||||||
|
|
||||||
|
To announce or repeat a post you will first need to know it's url. It is usually something like:
|
||||||
|
|
||||||
|
``` text
|
||||||
|
https://domain/users/name/statuses/number
|
||||||
|
```
|
||||||
|
|
||||||
|
Once you know that they you can use the command:
|
||||||
|
|
||||||
|
``` bash
|
||||||
|
python3 epicyon.py --nickname [yournick] --domain [name] \
|
||||||
|
--repeat [url] --password [mypass]
|
||||||
```
|
```
|
||||||
|
|
||||||
## Archiving posts
|
## Archiving posts
|
||||||
|
|
Loading…
Reference in New Issue