-
Notifications
You must be signed in to change notification settings - Fork 37
/
app.json
133 lines (133 loc) · 4.23 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "userbot-100101110",
"logo": "https://www.toptenz.net/wp-content/uploads/2019/01/red-dragon-3235672_640.jpg",
"repository": "https://github.com/100101110/userbot-100101110",
"env": {
"ENV": {
"description": "NON MODIFICARE serve per attivare Heroku.",
"value": "ANYTHING"
},
"TEMP_DOWNLOAD_DIRECTORY": {
"description": "Directory dei file NON MODIFICARE!",
"value": "./userbot/DOWNLOADS/",
"required": false
},
"ALIVE_NAME": {
"description": "Inserisci la @ del tuo account Telegram",
"value": ""
},
"AUTONAME": {
"description": "Requisito per il modulo autoprofilo.py imposta un nome che apparirà come nome di telegram.",
"value": "",
"required": false
},
"APP_ID": {
"description": "Valori ottenuti da my.telegram.org!",
"value": ""
},
"API_HASH": {
"description": "Valori ottenuti da my.telegram.org!",
"value": ""
},
"STRING_SESSION": {
"description": "Valore ottenuto da termux o telesetup.py",
"value": ""
},
"HEROKU_API_KEY": {
"description": "Vai su https://dashboard.heroku.com/account, vai su API KEY premi Reveal e copiala.",
"value": "",
"required": false
},
"HEROKU_APP_NAME": {
"description": "Valore uguale ad App Name inserito all'inizio.",
"value": "",
"required": false
},
"PRIVATE_GROUP_ID": {
"description": "Crea un gruppo privato e inserisci il ChatId per il log (es:-10012345678).",
"value": ""
},
"MAX_FLOOD_IN_P_M_s": {
"description": "Massimo numero di messaggi che una persona può inviarti prima di essere bloccata. Valore di default è 3.",
"value": "3",
"required": false
},
"OCR_SPACE_API_KEY": {
"description": "Requisito per ocr.py Vai su https://ocr.space/ocrapi e copia API.",
"value": "",
"required": false
},
"DEFAULT_BIO": {
"description": "Requisito per autoprofilo.py impostala per far funzionare il plugin.",
"value": "",
"required": false
},
"REM_BG_API_KEY": {
"description": "Requisito per il modulo autobio, imposta la tua bio personale.",
"value": "",
"required": false
},
"GITHUB_ACCESS_TOKEN": {
"description": "Requisito per gitcommit.py Vai sul tuo account e copia 'Github access token' e inserisci il token per usarlo.",
"value": "",
"required": false
},
"GIT_REPO_NAME": {
"description": "Inserisci il nome del tuo repo solo se hai inserito GITHUB_ACCESS_TOKEN.",
"value": "",
"required": false
},
"LYDIA_API_KEY": {
"description": "Vai su https://telegra.ph/Lydia-09-05 e scopri come funziona.",
"value": "",
"required": false
},
"TG_BOT_TOKEN_BF_HER": {
"description": "Crea un bot con http://t.me/BotFather e inserisci il token personale del tuo bot.",
"value": ""
},
"CHROME_BIN": {
"description": "Requisito carbon.py. Non toccare. ",
"value": "/app/.apt/usr/bin/google-chrome",
"required": false
},
"CHROME_DRIVER": {
"description": "Requisito carbon.py. Non toccare. ",
"value": "/app/.chromedriver/bin/chromedriver",
"required": false
},
"TG_BOT_USER_NAME_BF_HER": {
"description": "Crea un bot con http://t.me/BotFather e inserisci l'username in http.",
"value": ""
},
"DOWNLOAD_PFP_URL_CLOCK": {
"description": "Requisito per autopic.py Url preview link della tua Pic Profilo.",
"value": "",
"required": false
},
"TZ": {
"description": "Requisito per autopic.py Vai su http://www.timezoneconverter.com/cgi-bin/findzone.tzc",
"value": "Europe/Rome",
"required": false
}
},
"addons": [{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}],
"buildpacks": [{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},{
"url":"https://github.com/amivin/aria2-heroku.git"
},{
"url":"https://github.com/heroku/heroku-buildpack-google-chrome"
},{
"url":"https://github.com/heroku/heroku-buildpack-chromedriver"
},{
"url": "https://github.com/opendoor-labs/heroku-buildpack-p7zip"
},{
"url": "heroku/python"
}]
}