Files
liberama/server/config/base.js
2018-12-26 22:08:33 +07:00

19 lines
365 B
JavaScript

const pckg = require('../../package.json');
const execPath = __dirname + '/..';
module.exports = {
branch: 'base',
tempDir: execPath + '/tmp',
logDir: execPath + '/log',
dataDir: execPath + '/data',
dbFileName: 'db.sqlite',
loggingEnabled: true,
port: '33080',
ip: '127.0.0.1',
version: pckg.version,
name: pckg.name,
};