forked from 1024pix/matomo-scalingo-deploy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
scalingo.json
63 lines (63 loc) · 2 KB
/
scalingo.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
59
60
61
62
63
{
"name": "Matomo",
"homepage": "https://matomo.org",
"description": "Matomo is the leading open alternative to Google Analytics that gives you full control over your data. Matomo lets you easily collect data from websites, apps & the IoT and visualise this data and extract insights. Privacy is built-in.",
"logo": "https://static.matomo.org/wp-content/uploads/2018/11/matomo-logo-final-1-340x50.png",
"scripts": {
"first-deploy": "bash bin/first-deploy-init.sh"
},
"env": {
"MATOMO_INIT_USER_LOGIN": {
"description": "username of the superuser",
"required": true
},
"MATOMO_INIT_USER_EMAIL": {
"description": "email of the superuser",
"required": true
},
"MATOMO_INIT_USER_PASSWORD": {
"description": "password of the superuser",
"required": true
},
"MATOMO_INIT_SITE_NAME": {
"description": "name of the initial site sending analytics",
"required": true
},
"MATOMO_INIT_SITE_URL": {
"description": "URL of the initial site sending analytics",
"required": true
},
"MAIL_URL": {
"description": "URL to the mailserver which is going to send Matomo emails",
"required": false
},
"MATOMO_LICENSE_KEY": {
"description": "Matomo API key used for fetching purchased plugins",
"required": false
},
"MATOMO_PURCHASED_PLUGINS": {
"description": "Your purchased Matomo plugins",
"required": false
},
"MATOMO_PLUGINS": {
"description": "The plugins to install",
"required": false
},
"MATOMO_AUTO_ARCHIVING_FREQUENCY": {
"description": "Number of seconds between two reports auto-archiving",
"required": false,
"value": "3600"
},
"MATOMO_HOST": {
"description": "Host of the instance used by the auto-archiving reports job",
"required": false
},
"MATOMO_GENERAL_SALT": {
"description": "Encryption salt used by Matomo",
"generator": "secret"
}
},
"addons": [
"mysql:mysql-sandbox"
]
}