forked from companionstudio/instagram-token-agent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
30 lines (30 loc) · 1.06 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
{
"name": "Instagram Token Agent",
"description": "A service to keep your Instagram Basic Display API token fresh.",
"repository": "https://github.com/companionstudio/instagram-token-agent",
"logo": "https://raw.githubusercontent.com/companionstudio/instagram-token-agent/master/public/logo.svg?sanitize=true",
"keywords": ["instagram", "token", "basic-display-api", "instafeed"],
"addons": [
"temporize:developer",
"heroku-postgresql:hobby-dev",
"memcachier:dev"
],
"env": {
"STARTING_TOKEN": {
"value": "copy_token_here",
"description": "Your initial Instagram token value, sourced from Facebook's app dashboard."
},
"APP_NAME": {
"value": "copy_app_name_here",
"description": "Copy the name you chose for your app here (so the app can know its own name)."
},
"WEBHOOK_SECRET": {
"generator": "secret",
"description": "Used to sign webhook requests coming in from the Temporize scheduling service."
}
},
"scripts": {
"postdeploy": "bundle exec rake setup"
},
"success_url": "/"
}