mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-14 19:25:26 +03:00
30b4eb07f7
- This is a first pass at getting a more logical structure. The focus is on moving from admin/frontend to client/server. - The location of the databases is highly important, this isn't expected to change again In the future - client/assets should probably become public/ - more stuff should be shared (helpers etc) - cleanup some confusion around tpl and views
129 lines
2.2 KiB
JavaScript
129 lines
2.2 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.env = {
|
|
testing: {
|
|
database: {
|
|
client: 'sqlite3',
|
|
connection: {
|
|
filename: path.join(__dirname, '/core/server/data/ghost-test.db')
|
|
}
|
|
},
|
|
url: {
|
|
host: '127.0.0.1',
|
|
port: '2368'
|
|
}
|
|
},
|
|
|
|
travis: {
|
|
database: {
|
|
client: 'sqlite3',
|
|
connection: {
|
|
filename: path.join(__dirname, '/core/server/data/ghost-travis.db')
|
|
}
|
|
},
|
|
url: {
|
|
host: '127.0.0.1',
|
|
port: '2368'
|
|
}
|
|
},
|
|
|
|
development: {
|
|
database: {
|
|
client: 'sqlite3',
|
|
connection: {
|
|
filename: path.join(__dirname, '/core/server/data/ghost-dev.db')
|
|
},
|
|
debug: false
|
|
},
|
|
url: {
|
|
host: '127.0.0.1',
|
|
port: '2368'
|
|
}
|
|
},
|
|
|
|
staging: {
|
|
database: {
|
|
client: 'sqlite3',
|
|
connection: {
|
|
filename: path.join(__dirname, '/core/server/data/ghost-staging.db')
|
|
},
|
|
debug: false
|
|
},
|
|
url: {
|
|
host: '127.0.0.1',
|
|
port: '2368'
|
|
}
|
|
},
|
|
|
|
production: {
|
|
database: {
|
|
client: 'sqlite3',
|
|
connection: {
|
|
filename: path.join(__dirname, '/core/server/data/ghost.db')
|
|
},
|
|
debug: false
|
|
},
|
|
url: {
|
|
host: '127.0.0.1',
|
|
port: '2368'
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* @property {Object} exports
|
|
*/
|
|
module.exports = config; |