70824a247f
Conflicts: .gitignore config.example.js core/server/models/post.js package.json
62 lines
1.3 KiB
JSON
62 lines
1.3 KiB
JSON
{
|
|
"core": {
|
|
"currentVersion": {
|
|
"default": "000"
|
|
}
|
|
},
|
|
"blog": {
|
|
"title": {
|
|
"default": "Ghost"
|
|
},
|
|
"description": {
|
|
"default": "Just a blogging platform."
|
|
},
|
|
"email": {
|
|
"default": "ghost@example.com",
|
|
"validations": {
|
|
"notNull": true,
|
|
"isEmail": true
|
|
}
|
|
},
|
|
"logo": {
|
|
"default": ""
|
|
},
|
|
"cover": {
|
|
"default": ""
|
|
},
|
|
"defaultLang": {
|
|
"default": "en_US",
|
|
"validations": {
|
|
"notNull": true
|
|
}
|
|
},
|
|
"postsPerPage": {
|
|
"default": "6",
|
|
"validations": {
|
|
"notNull": true,
|
|
"isNumeric": true
|
|
}
|
|
},
|
|
"forceI18n": {
|
|
"default": "true",
|
|
"validations": {
|
|
"notNull": true,
|
|
"isIn": ["true", "false"]
|
|
}
|
|
}
|
|
},
|
|
"theme": {
|
|
"activePlugins": {
|
|
"default": ""
|
|
},
|
|
"activeTheme": {
|
|
"default": "casper"
|
|
}
|
|
},
|
|
"plugin": {
|
|
"installedPlugins": {
|
|
"default": "[]"
|
|
}
|
|
}
|
|
}
|