pomodoro/server/config/port.js
2016-08-14 19:18:09 +02:00

11 lines
165 B
JavaScript

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