Create 14-3-ghost-config.js

This commit is contained in:
Brendan Burns 2017-08-19 22:04:36 -07:00 committed by GitHub
parent 97b972d856
commit 7d05f38f68

25
14-3-ghost-config.js Normal file
View File

@ -0,0 +1,25 @@
var path = require('path'),
config;
config = {
development: {
url: 'http://localhost:2368',
database: {
client: 'sqlite3',
connection: {
filename: path.join(process.env.GHOST_CONTENT,
'/data/ghost-dev.db')
},
debug: false
},
server: {
host: '0.0.0.0',
port: '2368'
},
paths: {
contentPath: path.join(process.env.GHOST_CONTENT, '/')
}
}
};
module.exports = config;