-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
33 lines (33 loc) · 860 Bytes
/
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
{
"name": "Elixir facebook chat echo bot",
"description": "An elixir facebook chat echo bot, built with `facebook_messenger` hex library",
"repository": "https://github.com/oarrabi/phoenix_facebook_echo_bot",
"logo": "https://d.ibtimes.co.uk/en/full/1469154/facebook-messenger.jpg?w=400",
"keywords": [
"elixir",
"facebook",
"messenger",
"bot"
],
"buildpacks": [
{
"url": "https://github.com/HashNuke/heroku-buildpack-elixir.git"
},
{
"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static.git"
}
],
"env": {
"PAGE_TOKEN": {
"description": "The facebook page token",
"value": "PAGE_TOKEN"
},
"VERIFY_TOKEN": {
"description": "The facebook verify token",
"value": "VERIFY_TOKEN"
},
"SECRET_KEY_BASE": {
"generator": "secret"
}
}
}