This repository has been archived by the owner on Feb 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathapp.json
84 lines (84 loc) · 2.85 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name":"PaperplaneRemix",
"description":"A modular Telegram userbot.",
"repository":"https://github.com/AvinashReddy3108/PaperplaneRemix",
"logo":"https://i.imgur.com/pW4vFsd.png",
"keywords":[
"paperplaneremix",
"telegram-userbot",
"userbot",
"python"
],
"success_url":"https://t.me/MemezByAvinashReddy",
"stack":"container",
"image":"Dockerfile",
"env":{
"api_key_heroku":{
"description":"Get your API key from https://dashboard.heroku.com/account"
},
"api_id":{
"description":"Get your own Telegram API key from https://my.telegram.org/apps"
},
"api_hash":{
"description":"Get your own Telegram API hash from https://my.telegram.org/apps"
},
"redis_endpoint":{
"description":"Get your own free 30 MB databse from https://redislabs.com/"
},
"redis_password":{
"description":"Get your own free 30 MB databse from https://redislabs.com/"
},
"console_logger_level":{
"description":"Logging level to use for Heroku logs.",
"value":"INFO",
"required":false
},
"logger_group_id":{
"description":"The ID of a group if you want the userbot to log everything.",
"required":false
},
"pm_permit":{
"description":"Set this to 'True' to enable PMPermit feature.",
"value":"False"
},
"user":{
"description":"Your github username/email to access private repos.",
"required":false
},
"token":{
"description":"Your github token to access private repos. Get it from https://github.com/settings/tokens/new and enable repo.",
"required":false
},
"repos":{
"description":"A list of the repos you want to add. eg: user/repo, user1/repo1",
"required":false
},
"userbot_prefix":{
"description":"If you want to use one specific prefix. Set one.",
"required":false
},
"default_sticker_pack":{
"description":"Default sticker pack to add the new stickers in.",
"value":"auto",
"required":false
},
"default_animated_sticker_pack":{
"description":"Default animated sticker pack to add the new stickers in.",
"value":"auto",
"required":false
},
"self_destruct_msg":{
"description":"Set this to 'False' to disable auto-deletion of userbot's toast messages.",
"value":"True"
},
"api_key_removebg":{
"description":"Get your API key from https://remove.bg/",
"required":false
}
},
"formation":{
"worker":{
"quantity":1
}
}
}