Create 14-3-ghost-config.js
This commit is contained in:
parent
97b972d856
commit
7d05f38f68
25
14-3-ghost-config.js
Normal file
25
14-3-ghost-config.js
Normal 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;
|
||||||
Loading…
Reference in New Issue
Block a user