-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
49 lines (48 loc) · 1.39 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
{
"name":"Unsplash-bot",
"description":"A Simple Telegram bot for get High Resolution Photos from the Most Powerfull Photo Search Engine in the World; Unsplash",
"keywords":[
"Python",
"Pyrogram",
"Unsplash-API",
"Telegram"
],
"repository":"https://github.com/bibee-emio/Unsplash-bot",
"logo":"https://telegra.ph/file/9992ecd83db46a214577a.png",
"stack":"heroku-20",
"image":"heroku/python",
"success_url":"https://github.com/bibee-emio/Unsplash-bot",
"env":{
"API_ID":{
"description":"Your Telegram API-ID.Get from https://my.telegram.org/auth",
"value":"",
"required":true
},
"API_HASH":{
"description":"Your Telegram API-HASH.Get from https://my.telegram.org/auth",
"value":"",
"required":true
},
"BOT_TOKEN":{
"description":"Your Telegram Bot Token.Get from @BotFather",
"value":"",
"required":true
},
"UNSPLASH_ACCESS_KEY":{
"description":"Your Unsplash-API-Access-Key.Get from https://unsplash.com/developers",
"value":"",
"required":true
}
},
"buildpacks":[
{
"url":"heroku/python"
}
],
"formation":{
"worker":{
"quantity":1,
"size":"free"
}
}
}