production.js 355 B

1234567891011121314151617181920
  1. const path = require('path');
  2. const base = require('./base');
  3. const execDir = path.dirname(process.execPath);
  4. module.exports = Object.assign({}, base, {
  5. branch: 'production',
  6. execDir,
  7. servers: [
  8. {
  9. serverName: '1',
  10. mode: 'reader',
  11. ip: '0.0.0.0',
  12. port: '44080',
  13. },
  14. ],
  15. });