forked from electerious/Ackee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
41 lines (41 loc) · 1.26 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
{
"name": "Ackee",
"description": "Self-hosted, Node.js based analytics tool for those who care about privacy",
"keywords": [
"server",
"tracking",
"analytics"
],
"website": "https://ackee.electerious.com/",
"repository": "https://github.com/electerious/Ackee",
"env": {
"ACKEE_USERNAME": {
"description": "Username which will be used to log in to Ackee",
"required": true
},
"ACKEE_PASSWORD": {
"description": "Password which will be used to log in to Ackee",
"required": true
},
"ACKEE_MONGODB": {
"description": "MongoDB URI which will be used to connect a database to Ackee",
"required": true
},
"ACKEE_ALLOW_ORIGIN": {
"description": "Tracked domains which will be used on Ackee (CORS headers)",
"required": true
},
"ACKEE_AUTO_ORIGIN": {
"description": "Automatically add CORS headers for domains with fully qualified domain names as titles",
"required": false
},
"ACKEE_TTL": {
"description": "Specifies how long an Ackee TTL token is valid (Default: 3600000)",
"required": false
},
"ACKEE_TRACKER": {
"description": "Specifies a custom name for the tracking script (Default: tracker.js)",
"required": false
}
}
}