mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2025-12-06 13:05:39 +00:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6df4546b81 | |||
| 15bd013eaa | |||
| 39b607c4e7 | |||
| 98f3e2a461 | |||
| 0d31d90efd | |||
| 0ce202a5f6 | |||
| 077f8c30a6 | |||
| 1e9559a2c9 | |||
| feef8efee1 |
@@ -1,5 +1,12 @@
|
||||
# PlaguPoster
|
||||
|
||||
## 0.3.0
|
||||
|
||||
* `Versions`:
|
||||
* `tgbotapi`: `9.1.0`
|
||||
* `plagubot`: `7.1.0`
|
||||
* `plagubot-plugins`: `0.14.0`
|
||||
|
||||
## 0.2.3
|
||||
|
||||
* Add opportunity to use several target chat ids
|
||||
|
||||
@@ -10,4 +10,4 @@ android.enableJetifier=true
|
||||
# Project data
|
||||
|
||||
group=dev.inmo
|
||||
version=0.2.3
|
||||
version=0.4.0
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
kotlin = "1.8.22"
|
||||
kotlin-serialization = "1.5.1"
|
||||
|
||||
plagubot = "7.0.0"
|
||||
tgbotapi = "9.0.0"
|
||||
plagubot = "7.2.1"
|
||||
tgbotapi = "9.2.1"
|
||||
microutils = "0.19.9"
|
||||
kslog = "1.1.2"
|
||||
krontab = "2.1.2"
|
||||
plagubot-plugins = "0.13.0"
|
||||
plagubot-plugins = "0.15.1"
|
||||
|
||||
dokka = "1.8.20"
|
||||
|
||||
|
||||
@@ -26,16 +26,18 @@
|
||||
"chats": {
|
||||
"targetChat": 12345678,
|
||||
"cacheChat": 12345678,
|
||||
"sourceChat": 12345678
|
||||
"sourceChat": 12345678,
|
||||
"targetChats": [12345678],
|
||||
"_note": "You must set targetChat or targetChats with at least one object"
|
||||
}
|
||||
},
|
||||
"ratingsPolls": {
|
||||
"variants": {
|
||||
"Круть": 2,
|
||||
"Ок": 1,
|
||||
"Не ок": -1,
|
||||
"Совсем не ок": -2,
|
||||
"Посмотреть результаты": 0
|
||||
"Cool": 2,
|
||||
"Ok": 1,
|
||||
"Not ok": -1,
|
||||
"Inappropriate": -2,
|
||||
"Results": 0
|
||||
},
|
||||
"autoAttach": true,
|
||||
"ratingOfferText": "What do you think about it?"
|
||||
|
||||
23
runner/sample.docker-compose.yml
Normal file
23
runner/sample.docker-compose.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
version: "3.4"
|
||||
|
||||
services:
|
||||
plaguposter_postgres:
|
||||
image: postgres:15.4-bullseye
|
||||
container_name: "plaguposter_postgres"
|
||||
restart: "unless-stopped"
|
||||
environment:
|
||||
POSTGRES_USER: "test"
|
||||
POSTGRES_PASSWORD: "test"
|
||||
POSTGRES_DB: "test"
|
||||
volumes:
|
||||
- "./db/:/var/lib/postgresql/data"
|
||||
ports:
|
||||
- "127.0.0.1:8091:5432"
|
||||
plaguposter:
|
||||
image: insanusmokrassar/plaguposter:latest
|
||||
container_name: "plaguposter"
|
||||
restart: "unless-stopped"
|
||||
volumes:
|
||||
- "./config.json:/config.json"
|
||||
depends_on:
|
||||
- "plaguposter_postgres"
|
||||
Reference in New Issue
Block a user