mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
da04c5d6b3
- also remove .jshintrc from releases
26 lines
No EOL
583 B
JavaScript
26 lines
No EOL
583 B
JavaScript
/* jshint ignore:start */
|
|
var settings = {
|
|
"title": "Ghost",
|
|
"description": "Just a blogging platform.",
|
|
"email": "ghost@tryghost.org",
|
|
"logo": "",
|
|
"cover": "",
|
|
"defaultLang": "en_US",
|
|
"postsPerPage": "6",
|
|
"forceI18n": "true",
|
|
"permalinks": "/:slug/",
|
|
"activeTheme": "casper",
|
|
"activeApps": "[]",
|
|
"installedApps": "[]",
|
|
"availableThemes": [
|
|
{
|
|
"name": "casper",
|
|
"package": false,
|
|
"active": true
|
|
}
|
|
],
|
|
"availableApps": []
|
|
};
|
|
|
|
export default settings;
|
|
/* jshint ignore:end */ |