-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
56 lines (56 loc) · 1.73 KB
/
app.json
File metadata and controls
56 lines (56 loc) · 1.73 KB
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
{
"name": "gimmeremmetokensbot",
"description": "Telegram bot for Remme tokens distribution for testing purposes.",
"keywords": [
"remme",
"tokens"
],
"website": "https://remme.io",
"repository": "https://github.com/Remmeauth/gimmeremmetokensbot",
"env": {
"ENVIRONMENT": {
"description": "Environment value. For now, is used for detect review applications only.",
"required": false
},
"TELEGRAM_BOT_TOKEN": {
"description": "Telegram bot token.",
"required": true
},
"DATABASE_URL": {
"description": "Databsae to store information about users.",
"required": false
},
"NODEOS_HOST": {
"description": "Nodeos host. For instance, `api.jungle.greeneosio.com`.",
"required": false
},
"NODEOS_PORT": {
"description": "Nodeos port. For instance, `443`.",
"required": false
},
"MASTER_WALLET_PRIVATE_KEY": {
"description": "Faucet wallet private key to sign transactions.",
"required": false
},
"MASTER_ACCOUNT_NAME": {
"description": "Faucet account with tokens to sent them to users' accounts.",
"required": false
},
"TRANSACTIONS_SYMBOL": {
"description": "Transaction symbol.",
"required": false
},
"STABLE_REMME_TOKENS_REQUEST_AMOUNT": {
"description": "Amount of tokens to send from master account.",
"required": true
},
"REQUEST_TOKENS_PERIOD_IN_HOURS_LIMIT": {
"description": "Request tokens period in hours limit. For instance, `1` or `12`.",
"required": true
},
"PRODUCTION_HOST": {
"description": "Server host, which runs bot. For instance, `https://gimmeremmetokensbot-staging.herokuapp.com`.",
"required": true
}
}
}