server.js
/** * Module dependencies. */ import chalk from 'chalk';import path from 'path'; const app = await import(path.resolve('./lib/app.js')); const server = app.start().catch((e) => { console.log(chalk.red(`Server failed`)); console.log(JSON.stringify(e.message)); throw e;}); process.on('SIGINT', () => { console.info(chalk.blue(' SIGINT Graceful shutdown ', new Date().toISOString())); app.shutdown(server);}); process.on('SIGTERM', () => { console.info(chalk.blue(' SIGTERM Graceful shutdown ', new Date().toISOString())); app.shutdown(server);});