-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnodee-cms.package.json
More file actions
41 lines (40 loc) · 1.38 KB
/
nodee-cms.package.json
File metadata and controls
41 lines (40 loc) · 1.38 KB
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":"nodee-cms",
"version":"0.9.24",
"dependencies":[ "nodee-total", "nodee-admin" ],
"config":{
"admin-base-path": {
"description": "Cms admin area base path, all resources inside need user to be authenticated with role 'adminarea' or 'admin'",
"value": "/cmsadmin",
"required": true
},
"cms-documents-caching": {
"description": "Leave blank if app will scale horizontally",
"value": "1m"
},
"cms-redirects-caching": {
"description": "Caching of redirect controller script, default is 10 minutes",
"value": "10m"
},
"cms-datasource-host":{
"description": "Leave blank to inherit from primary datasource",
"value": ""
},
"cms-datasource-port":{
"description": "Leave blank to inherit from primary datasource",
"value": ""
},
"cms-datasource-username":{
"description": "Leave blank to inherit from primary datasource",
"value": ""
},
"cms-datasource-password":{
"description": "Leave blank to inherit from primary datasource",
"value": ""
},
"cms-datasource-database":{
"description": "Leave blank to inherit from primary datasource",
"value": ""
}
}
}