function run()

in server.ts [107:115]


 function run(): void {
   const port = process.env['PORT'] || process.argv[3] || 4000;
 
   // Start up the Node server
   const server = app();
   server.listen(port, () => {
     console.log(`Node Express server listening on http://localhost:${port}`);
   });
 }