journey/server/config/port.js
2017-02-23 19:29:58 +01:00

11 lines
169 B
JavaScript

'use strict';
const basePort = 3060;
module.exports = {
development: basePort,
testing: basePort + 1,
staging: basePort + 2,
production: basePort + 3,
}[ENV];