forked from stringer-rss/stringer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
40 lines (40 loc) · 1.04 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
{
"name": "Stringer",
"description": "A self-hosted, anti-social RSS reader.",
"logo": "https://raw.githubusercontent.com/swanson/stringer/master/screenshots/logo.png",
"keywords": [
"RSS",
"Ruby"
],
"website": "https://github.com/swanson/stringer",
"success_url": "/heroku",
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
},
"env": {
"SECRET_TOKEN": {
"description": "Secret key used as the session secret",
"generator": "secret"
},
"LOCALE": {
"description": "Specify the translation locale you wish to use",
"value": "en"
},
"ENFORCE_SSL": {
"description": "Force all clients to connect over SSL",
"value": "true"
},
"WORKER_EMBEDDED": {
"description": "Force worker threads to be spawned by main process",
"value": "true"
},
"WORKER_RETRY": {
"description": "Number of times to respawn the worker thread if it fails",
"value": "3"
}
},
"addons": [
"heroku-postgresql:hobby-dev",
"scheduler:standard"
]
}