-
-
Notifications
You must be signed in to change notification settings - Fork 396
/
app.json
52 lines (52 loc) · 1.45 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
{
"name": "Stringer",
"description": "A self-hosted, anti-social RSS reader.",
"logo": "https://raw.githubusercontent.com/stringer-rss/stringer/main/screenshots/logo.png",
"keywords": [
"RSS",
"Ruby"
],
"website": "https://github.com/stringer-rss/stringer",
"success_url": "/heroku",
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
},
"env": {
"SECRET_KEY_BASE": {
"description": "Secret key used by rails for encryption",
"generator": "secret"
},
"ENCRYPTION_PRIMARY_KEY": {
"description": "Secret key used by rails for encryption",
"generator": "secret"
},
"ENCRYPTION_DETERMINISTIC_KEY": {
"description": "Secret key used by rails for encryption",
"generator": "secret"
},
"ENCRYPTION_KEY_DERIVATION_SALT": {
"description": "Secret key used by rails for encryption",
"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"
]
}