forked from dz0ny/heroku-docker-piwik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
50 lines (50 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
{
"name": "Piwik",
"description": "Piwik is the leading open-source analytics platform that gives you more than just powerful analytics:",
"website": "https://piwik.org/",
"repository": "https://github.com/dz0ny/heroku-docker-piwik",
"logo": "http://piwik.org/wp-content/themes/piwik/assets/img/media/piwik.png",
"keywords": [
"php",
"piwik",
"analytics"
],
"env": {
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"DB_HOST": {
"description": "MySQL database host.",
"required": true,
"value": "localhost"
},
"DB_PORT": {
"description": "MySQL database port.",
"required": true,
"value": "3306"
},
"DB_USERNAME": {
"description": "MySQL database username.",
"required": true,
"value": "root"
},
"DB_PASSWORD": {
"description": "MySQL database password.",
"required": true,
"value": "password"
},
"DB_NAME": {
"description": "MySQL database name.",
"required": true,
"value": "piwik"
},
"DB_PREFIX": {
"description": "MySQL database prefix for tables.",
"value": "pw_"
}
},
"addons": [
"jawsdb"
]
}