22 lines
462 B
TypeScript
22 lines
462 B
TypeScript
import type { Server } from 'http';
|
|
import app from './app';
|
|
import appConfig from './config/app';
|
|
import logger from './helpers/logger';
|
|
import telemetry from './helpers/telemetry';
|
|
|
|
telemetry.setServiceType('main');
|
|
|
|
const port = appConfig.port;
|
|
|
|
const server: Server = app.listen(port, () => {
|
|
logger.info(`Server is listening on ${port}`);
|
|
});
|
|
|
|
function shutdown(server: Server) {
|
|
server.close();
|
|
}
|
|
|
|
process.on('SIGTERM', () => {
|
|
shutdown(server);
|
|
});
|