Ghost/core/server/data/default-settings.json

98 lines
2.3 KiB
JSON
Raw Normal View History

{
"core": {
"databaseVersion": {
"defaultValue": "003"
},
"dbHash": {
"defaultValue": null
},
"nextUpdateCheck": {
"defaultValue": null
},
"displayUpdateNotification": {
"defaultValue": null
}
},
"blog": {
"title": {
"defaultValue": "Ghost"
},
"description": {
"defaultValue": "Just a blogging platform."
},
"email": {
"defaultValue": "ghost@example.com",
"validations": {
"isNull": false,
"isEmail": true
}
},
"logo": {
"defaultValue": ""
},
"cover": {
"defaultValue": ""
},
"defaultLang": {
"defaultValue": "en_US",
"validations": {
"isNull": false
}
},
"postsPerPage": {
2014-07-22 00:34:51 +04:00
"defaultValue": "5",
"validations": {
"isNull": false,
"isInt": true,
"isLength": [1, 1000]
}
},
"forceI18n": {
"defaultValue": "true",
"validations": {
"isNull": false,
"isIn": [["true", "false"]]
}
2013-11-21 22:44:18 +04:00
},
"permalinks": {
"defaultValue": "/:slug/",
"validations": {
"matches": "^(\/:?[a-z0-9_-]+){1,5}\/$",
"matches": "(:id|:slug|:year|:month|:day)",
2013-11-21 22:44:18 +04:00
"notContains": "/ghost/"
}
},
"ghost_head": {
"defaultValue" : ""
},
"ghost_foot": {
"defaultValue" : ""
2014-12-14 20:56:04 +03:00
},
"labs": {
"defaultValue": "{}"
},
"navigation": {
2015-02-25 20:20:42 +03:00
"defaultValue": "[{\"label\":\"Home\", \"url\":\"/\"}]"
},
"isPrivate": {
"defaultValue": "false"
},
"password": {
"defaultValue": ""
}
},
"theme": {
"activeTheme": {
"defaultValue": "casper"
}
},
2014-01-21 12:45:27 +04:00
"app": {
"activeApps": {
"defaultValue": "[]"
},
2014-01-21 12:45:27 +04:00
"installedApps": {
"defaultValue": "[]"
}
}
}