This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
forked from simplebot-org/simplebot-www-heroku
-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
48 lines (48 loc) · 1.42 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
{
"name": "Simplebot WWW",
"description": "Delta Chat bot that allows to browse the web, download and upload files, and more, all by e-mail / Delta Chat",
"keywords": [
"simplebot",
"deltachat",
"downloader",
"translator"
],
"success_url": "https://github.com/adbenitez/simplebot-www-heroku",
"website": "https://github.com/adbenitez/simplebot-www-heroku",
"repository": "https://github.com/adbenitez/simplebot-www-heroku",
"env": {
"ADMIN": {
"description": "Your own email address as bot administrator",
"required": false,
"value": ""
},
"ADDR": {
"description": "The email address of the bot. IMAP access required, for gmail check https://support.google.com/mail/answer/7126229",
"value": ""
},
"PASSWORD": {
"description": "The password of the bot's email account",
"value": ""
},
"BOT_NAME": {
"description": "The bot's display name",
"value": "www"
},
"DELAY": {
"description": "Time(in seconds) to wait between sent file parts",
"value": "60"
}
},
"addons": [
"heroku-postgresql"
],
"buildpacks": [{
"url": "heroku/python"
}],
"formation": {
"bot": {
"quantity": 1,
"size": "free"
}
}
}