29 lines
686 B
TypeScript
29 lines
686 B
TypeScript
|
|
import { createApp } from './app';
|
||
|
|
import { config } from './config';
|
||
|
|
|
||
|
|
const app = createApp();
|
||
|
|
const PORT = config.port || 3000;
|
||
|
|
|
||
|
|
// Start the server
|
||
|
|
const server = app.listen(PORT, () => {
|
||
|
|
console.log(`Server running on port ${PORT}`);
|
||
|
|
});
|
||
|
|
|
||
|
|
// Graceful shutdown
|
||
|
|
process.on('SIGINT', () => {
|
||
|
|
console.log('SIGINT received: shutting down gracefully');
|
||
|
|
server.close(() => {
|
||
|
|
console.log('Closed out remaining connections.');
|
||
|
|
process.exit(0);
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
process.on('SIGTERM', () => {
|
||
|
|
console.log('SIGTERM received: shutting down gracefully');
|
||
|
|
server.close(() => {
|
||
|
|
console.log('Closed out remaining connections.');
|
||
|
|
process.exit(0);
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
export default server;
|