diff options
Diffstat (limited to 'server.js')
-rw-r--r-- | server.js | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -40,9 +40,6 @@ const mongoose = require('mongoose') | |||
40 | const routes = require('./server/controllers') | 40 | const routes = require('./server/controllers') |
41 | const Request = mongoose.model('Request') | 41 | const Request = mongoose.model('Request') |
42 | 42 | ||
43 | // Get configurations | ||
44 | const port = config.get('listen.port') | ||
45 | |||
46 | // ----------- Command line ----------- | 43 | // ----------- Command line ----------- |
47 | 44 | ||
48 | // ----------- App ----------- | 45 | // ----------- App ----------- |
@@ -129,6 +126,7 @@ app.use(function (err, req, res, next) { | |||
129 | res.sendStatus(err.status || 500) | 126 | res.sendStatus(err.status || 500) |
130 | }) | 127 | }) |
131 | 128 | ||
129 | const port = constants.CONFIG.LISTEN.PORT | ||
132 | installer.installApplication(function (err) { | 130 | installer.installApplication(function (err) { |
133 | if (err) throw err | 131 | if (err) throw err |
134 | 132 | ||