16 lines
318 B
Plaintext
16 lines
318 B
Plaintext
let path = require('path');
|
|
|
|
let rootPath = path.normalize(__dirname + '/..')
|
|
|
|
let config = {
|
|
root: rootPath,
|
|
app: {
|
|
name: 'spider'
|
|
},
|
|
db: 'mongodb://localhost/ghost-development',
|
|
logs_path: '/Users/zhl/Documents/logs/spider',
|
|
download_path: '/Users/zhl/Documents/spider',
|
|
};
|
|
|
|
module.exports = config;
|