mirror of
http://gitea.phreedom.club/localhost_frssoft/pleroma-cli
synced 2024-10-31 22:27:21 +00:00
Changed default config; update readme
This commit is contained in:
parent
7c09fb0307
commit
63318b6822
|
@ -40,15 +40,17 @@
|
|||
daemon_mode=yes instance=example ./pleroma-cli.sh
|
||||
```
|
||||
|
||||
# Отправка постов
|
||||
### Отправка постов
|
||||
Чтобы отправить пост, нужно в папке all_statuses/$instance создать файл message и записать туда пост, затем создать файл create там же
|
||||
(Для добавления вложений нужно создать папку attachments и положить туда файлы для отправки)
|
||||
|
||||
### Частичное взаимодействие с постами:
|
||||
Чтобы добавить в избранное или бустануть пост нужно в папке с постом создать файл favourite и\или share
|
||||
Открыть тред, аналогично: threadopen
|
||||
```
|
||||
touch favourite
|
||||
touch share
|
||||
touch threadopen
|
||||
```
|
||||
|
||||
### Ответ на пост
|
||||
|
@ -59,6 +61,7 @@ touch share
|
|||
```
|
||||
# Сортированный вывод текcтов всех постов в хронологическом порядке
|
||||
cat $(/bin/ls all_statuses/instance.example/*/content --sort=time) | less
|
||||
# На самом деле FlakeId сам по себе сортируется по имени от старых к новым
|
||||
|
||||
# все тексты постов
|
||||
cat all_statuses/instance.example/*/content
|
||||
|
|
11
config.json
11
config.json
|
@ -7,19 +7,8 @@
|
|||
"i2p_http_proxy_addr": "http://127.0.0.1:4444",
|
||||
"tor_proxy_addr": "socks5://127.0.0.1:9050",
|
||||
"max_statuses": 40,
|
||||
"per_status_mode": true,
|
||||
"enabled_nsfw": true,
|
||||
"nsfw_only": false,
|
||||
"hide_reblogs": false,
|
||||
"default_content_type": "text/plain",
|
||||
"default_visibility": "unlisted",
|
||||
"format_time": "+%d.%m.%Y %H:%M:%S",
|
||||
"boost_symbol": "[>>]",
|
||||
"statuses_separator": "\n==========",
|
||||
"reversed_statuses": false,
|
||||
"quoting_reply": true,
|
||||
"copy_mentions": true,
|
||||
"default_media_player": "mpv",
|
||||
"public_list_instances": [
|
||||
"outerheaven.club",
|
||||
"stereophonic.space",
|
||||
|
|
Loading…
Reference in a new issue