geolets/server/config/port.js
2016-07-14 17:15:55 +02:00

11 lines
168 B
JavaScript

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