Files
liberama/server/config/production.js
2018-12-27 22:12:33 +07:00

14 lines
344 B
JavaScript

const path = require('path');
const base = require('./base');
const execPath = path.dirname(process.execPath);
module.exports = Object.assign({}, base, {
branch: 'production',
tempDir: execPath + '/tmp',
logDir: execPath + '/log',
dataDir: execPath + '/data',
publicDir: execPath + '/public',
}
);