-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
54 lines (54 loc) · 1.72 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
{
"name": "Mobius Telegram Tip Bot",
"description": "Telegram bot, allowing to tip users for cool messages in cryptocurrencies",
"repository": "https://github.com/mobius-network/mobius-tipbot-ruby",
"keywords": ["mobius", "telegram", "bot"],
"env": {
"MOBIUS_TIPBOT_TOKEN": {
"description": "Telegram bot token. You can obtain one, using BotFather"
},
"MOBIUS_TIPBOT_APP_PRIVATE_KEY": {
"description": "Seed of Stellar account for depositing tips"
},
"MOBIUS_TIPBOT_CREDIT_ADDRESS": {
"description": "Public key of the Stellar account with money pool for tips"
},
"MOBIUS_TIPBOT_RATE": {
"description": "Single tip amount",
"value": "0.5"
},
"MOBIUS_TIPBOT_ASSET_CODE": {
"description": "Custom Stellar asset code for tips",
"required": false
},
"MOBIUS_TIPBOT_ASSET_ISSUER": {
"description": "Custom Stellar asset issuer",
"required": false
},
"MOBIUS_TIPBOT_APP_BALANCE_ALERT_THRESHOLD": {
"description": "Threshold for alerting about low app balance",
"required": false
},
"MOBIUS_TIPBOT_ADMIN_EMAIL": {
"description": "Admin email for receiving notifications",
"required": false
},
"MOBIUS_TIPBOT_SMTP_HOST": {
"description": "SMTP server host for sending notifications",
"required": false
},
"MOBIUS_TIPBOT_SMTP_PORT": {
"description": "SMTP server port for sending notifications",
"required": false
},
"MOBIUS_TIPBOT_SMTP_USERNAME": {
"description": "SMTP server username",
"required": false
},
"MOBIUS_TIPBOT_SMTP_PASSWORD": {
"description": "SMTP server password",
"required": false
}
},
"addons": [ "heroku-redis" ]
}