mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #64 from overleaf/jpa-rename-express-app-var
[misc] align the variable name of the express app with other services
This commit is contained in:
commit
8e8a05e94f
1 changed files with 13 additions and 13 deletions
|
@ -18,22 +18,22 @@ metrics.memory.monitor(logger)
|
|||
|
||||
const SpellingAPIController = require('./app/js/SpellingAPIController')
|
||||
const express = require('express')
|
||||
const server = express()
|
||||
metrics.injectMetricsRoute(server)
|
||||
const app = express()
|
||||
metrics.injectMetricsRoute(app)
|
||||
const bodyParser = require('body-parser')
|
||||
const HealthCheckController = require('./app/js/HealthCheckController')
|
||||
|
||||
server.use(bodyParser.json({ limit: '2mb' }))
|
||||
server.use(metrics.http.monitor(logger))
|
||||
app.use(bodyParser.json({ limit: '2mb' }))
|
||||
app.use(metrics.http.monitor(logger))
|
||||
|
||||
server.del('/user/:user_id', SpellingAPIController.deleteDic)
|
||||
server.get('/user/:user_id', SpellingAPIController.getDic)
|
||||
server.post('/user/:user_id/check', SpellingAPIController.check)
|
||||
server.post('/user/:user_id/learn', SpellingAPIController.learn)
|
||||
server.post('/user/:user_id/unlearn', SpellingAPIController.unlearn)
|
||||
server.get('/status', (req, res) => res.send({ status: 'spelling api is up' }))
|
||||
app.del('/user/:user_id', SpellingAPIController.deleteDic)
|
||||
app.get('/user/:user_id', SpellingAPIController.getDic)
|
||||
app.post('/user/:user_id/check', SpellingAPIController.check)
|
||||
app.post('/user/:user_id/learn', SpellingAPIController.learn)
|
||||
app.post('/user/:user_id/unlearn', SpellingAPIController.unlearn)
|
||||
app.get('/status', (req, res) => res.send({ status: 'spelling api is up' }))
|
||||
|
||||
server.get('/health_check', HealthCheckController.healthCheck)
|
||||
app.get('/health_check', HealthCheckController.healthCheck)
|
||||
|
||||
const settings =
|
||||
Settings.internal && Settings.internal.spelling
|
||||
|
@ -44,7 +44,7 @@ const port = settings && settings.port ? settings.port : 3005
|
|||
|
||||
if (!module.parent) {
|
||||
// application entry point, called directly
|
||||
server.listen(port, host, function(error) {
|
||||
app.listen(port, host, function(error) {
|
||||
if (error != null) {
|
||||
throw error
|
||||
}
|
||||
|
@ -52,4 +52,4 @@ if (!module.parent) {
|
|||
})
|
||||
}
|
||||
|
||||
module.exports = server
|
||||
module.exports = app
|
||||
|
|
Loading…
Reference in a new issue