Ghost/core/server/data/default-settings.json
Hannah Wolfe 70824a247f Merge branch 'migrations-003' into new-version
Conflicts:
	.gitignore
	config.example.js
	core/server/models/post.js
	package.json
2013-09-14 19:15:04 +01:00

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": "[]"
}
}
}