Ghost/config.js
Hannah Wolfe 5c15c2d4b0 issue #186 - load plugins
- Adding activePlugins array to config.js
- Adding a loadPlugins function to ghost.js
- Tweaking fancyFirstChar.js so that it works again, getting rid of the function wrapper and constructor
2013-07-01 20:24:48 +01:00

89 lines
1.3 KiB
JavaScript

// # Ghost Configuration
/**
* global module
**/
var path = require('path'),
config;
/**
* @module config
* @type {Object}
*/
config = {};
// ## Admin settings
/**
* @property {string} defaultLang
*/
config.defaultLang = 'en';
/**
* @property {boolean} forceI18n
*/
config.forceI18n = true;
// ## Themes
/**
* @property {string} themeDir
*/
// Themes
config.themeDir = 'themes';
// Current active theme
/**
* @property {string} activeTheme
*/
config.activeTheme = 'casper';
config.activePlugins = [
'fancyFirstChar.js'
];
// Default Navigation Items
/**
* @property {Array} nav
*/
config.nav = [{
title: 'Home',
url: '/'
}];
config.database = {
testing: {
client: 'sqlite3',
connection: {
filename: path.join(__dirname, '/core/shared/data/tests.db')
}
},
travis: {
client: 'sqlite3',
connection: {
filename: path.join(__dirname, '/core/shared/data/tests.db')
}
// debug: true
},
development: {
client: 'sqlite3',
connection: {
filename: path.join(__dirname, '/core/shared/data/testdb.db')
},
debug: false
// debug: true
},
staging: {},
production: {}
};
/**
* @property {Object} exports
*/
module.exports = config;