-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
58 lines (58 loc) · 2.18 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
{
"name": "Offen Fair Web Analytics",
"description": "Let your users access their data. Gain valuable insights at the same time. Open, lightweight, self hosted and free.",
"repository": "https://github.com/offen/heroku",
"logo": "https://offen.github.io/press-kit/offen-icon/offen-icon-white-orange.png",
"keywords": ["analytics", "privacy", "self-hosted"],
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
}
],
"website": "https://www.offen.dev",
"stack": "container",
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"success_url": "/setup/",
"env": {
"OFFEN_SMTP_HOST": {
"description": "The SMTP host to use for sending transactional email. (We recommend setting this now, but you could also add it later).",
"required": false
},
"OFFEN_SMTP_PORT": {
"description": "The port the SMTP host listens on. (We recommend setting this now, but you could also add it later).",
"required": false,
"value": "587"
},
"OFFEN_SMTP_USER": {
"description": "The SMTP username to use for sending transactional email. (We recommend setting this now, but you could also add it later).",
"required": false
},
"OFFEN_SMTP_PASSWORD": {
"description": "The SMTP password to use for sending transactional email. (We recommend setting this now, but you could also add it later).",
"required": false
},
"OFFEN_SMTP_SENDER": {
"description": "The 'from' address to use for sending transactional email. (We recommend setting this now, but you could also add it later).",
"required": false
},
"OFFEN_APP_DEPLOYTARGET": {
"description": "Allow Offen to pick up configuration specified by the Heroku runtime. (You do not need to change this).",
"value": "heroku",
"required": true
},
"OFFEN_DATABASE_DIALECT": {
"description": "Use a Postgres database. (You do not need to change this unless you provision a different database).",
"value": "postgres",
"required": true
},
"APP_SECRET": {
"description": "A secret key for verifying the integrity of signed cookies and URL tokens",
"generator": "secret"
}
}
}