overleaf/services/spelling/app.js
Eric Mc Sween f6c1e2738d Merge pull request #10938 from overleaf/em-esm-spelling
Migrate spelling to ES modules

GitOrigin-RevId: 4a200c8d1c28be44027cc8a3097e42575ab6593f
2022-12-21 09:03:55 +00:00

22 lines
582 B
JavaScript

import Settings from '@overleaf/settings'
import logger from '@overleaf/logger'
import { app } from './app/js/server.js'
import * as ASpell from './app/js/ASpell.js'
const { host = 'localhost', port = 3005 } = Settings.internal?.spelling ?? {}
ASpell.startCacheDump()
const server = app.listen(port, host, function (error) {
if (error) {
throw error
}
logger.info({ host, port }, 'spelling HTTP server starting up')
})
process.on('SIGTERM', () => {
ASpell.stopCacheDump()
server.close(() => {
logger.info({ host, port }, 'spelling HTTP server closed')
})
})