0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00
ghost/config.js

110 lines
2.4 KiB
JavaScript
Raw Normal View History

2013-05-11 17:44:25 +01:00
// # Ghost Configuration
var path = require('path'),
config = {};
// ## Admin settings
// Default language
config.defaultLang = 'en';
// Force i18n to be on
config.forceI18n = true;
// ## Plugins
// Current active plugins
config.activePlugins = [
'FancyFirstChar'
];
2013-09-01 20:29:56 -05:00
// The url to use when providing links to the site; like RSS and email.
config.siteUrl = 'http://127.0.0.1';
// ## Default Navigation Items
// Add new objects here to extend the menu output by {{nav}}
config.nav = [
{
// Title is the text shown for this nav item
title: 'Home',
// Url can be a relative path, or external URL
url: '/'
}
// new items go here
];
// ## Environment
// **Warning:** Only change the settings below here if you are sure of what you are doing!
config.env = {
testing: {
database: {
client: 'sqlite3',
connection: {
filename: path.join(__dirname, '/core/server/data/ghost-test.db')
}
},
url: {
host: '127.0.0.1',
port: '2369'
}
},
travis: {
database: {
client: 'sqlite3',
connection: {
filename: path.join(__dirname, '/core/server/data/ghost-travis.db')
}
},
url: {
host: '127.0.0.1',
port: '2368'
}
},
// Default configuration
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'
}
}
};
// Export config
module.exports = config;