This repository has been archived by the owner on Mar 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
49 lines (49 loc) · 1.69 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": "im pact",
"description": "\"im pact\" is Twitter crawler and bot for Producers and Everyone.",
"repository": "https://github.com/arisucool/im-pact",
"env": {
"AUTO_CLEANUP_MAX_DB_ROWS": {
"description": "Maximum rows of the database. When database rows have been reached to this value, automated cleanup will be executed. For example, if you plan to use the free plan of Heroku Postgres, you should specify 7500.",
"required": false,
"value": "7500"
},
"BASE_URL": {
"description": "Your application URL (e.g. 'https://****.herokuapp.com'). **** is the same with the 'App name'.",
"required": true
},
"NPM_CONFIG_PRODUCTION": {
"description": "We recommend that you set this value to \"true\" for faster builds.",
"value": "true"
},
"JWT_TOKEN_SECRET": {
"description": "A secret string to generate an authorization token.",
"required": true,
"generator": "secret"
},
"TWITTER_CONSUMER_KEY": {
"description": "A consumer key for Twitter API.",
"required": true
},
"TWITTER_CONSUMER_SECRET": {
"description": "A consumer secret for Twitter API.",
"required": true
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
},
{
"plan": "heroku-redis:hobby-dev",
"options": {
"maxmemory_policy": "allkeys-lru",
"timeout": 300
}
},
{
"plan": "scheduler:standard"
}
],
"stack": "container"
}