This repository has been archived by the owner on Dec 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
executable file
·84 lines (84 loc) · 2.8 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "Slackémon",
"description": "Inspired by Pokémon Go, now you can collect Pokémon and battle your teammates on Slack!",
"website": "https://github.com/tdmalone/slackemon",
"repository": "https://github.com/tdmalone/slackemon",
"logo": "https://cdn.rawgit.com/tdmalone/slackemon/5109c1f231ac54d29d0aa26094342aaeff7dc51a/media/emoji/pokeball.png",
"success_url": "https://github.com/tdmalone/slackemon/wiki/Installing-on-Heroku",
"image": "heroku/php",
"keywords": [
"php",
"slack",
"pokemon"
],
"env": {
"SLACKEMON_SLACK_TEAM_ID": {
"description": "Your Slack team ID",
"value": "TXXXXXXXX"
},
"SLACKEMON_SLACK_TOKEN": {
"description": "Token provided by Slack when installing to your team"
},
"SLACKEMON_SLACK_KEY": {
"description": "OAuth key provided by Slack when installing to your team"
},
"SLACKEMON_MAINTAINER": {
"description": "Your own Slack user ID",
"value": "UXXXXXXXX"
},
"SLACKEMON_CRON_TOKEN": {
"description": "Generated token to protect your cron endpoint",
"generator": "secret"
},
"SLACKEMON_INBOUND_URL": {
"description": "The URL of your app - please include the trailing slash",
"value": "https://YOUR-APP-NAME.herokuapp.com/"
},
"SLACKEMON_DATA_STORE_METHOD": {
"description": "Defines where your data is stored - should be left as 'postgres' on Heroku",
"value": "postgres"
},
"SLACKEMON_DATA_CACHE_METHOD": {
"description": "Defines where your data is cached - should be left as 'aws' on Heroku",
"value": "aws"
},
"SLACKEMON_IMAGE_CACHE_METHOD": {
"description": "Defines where your images are stored - should be left as 'aws' on Heroku",
"value": "aws"
},
"SLACKEMON_DATA_BUCKET": {
"description": "The name of your AWS bucket for storing data"
},
"SLACKEMON_IMAGE_CACHE_BUCKET": {
"description": "The name of your AWS bucket for storing images"
},
"SLACKEMON_AWS_ID": {
"description": "Your AWS ID"
},
"SLACKEMON_AWS_SECRET": {
"description": "Your AWS secret"
},
"SLACKEMON_AWS_REGION": {
"description": "The region your AWS buckets are in - 'us-east-1' is recommended for best results",
"value": "us-east-1"
},
"SLACKEMON_OPENWEATHERMAP_KEY": {
"description": "To enable optional weather integrations, sign up for a free account at openweathermap.org",
"required": false
},
"SLACKEMON_WEATHER_LAT_LON": {
"description": "If enabling weather integration, set the real-world location you want to use in-game",
"value": "-37.81,144.96",
"required": false
}
},
"addons": [
"papertrail",
"heroku-postgresql"
],
"buildpacks": [
{
"url": "heroku/php"
}
]
}