const apiApp = require('./api-app'); const apiPort = 7860||process.env.API_PORT; // Port for the API app // Start the API app server apiApp.listen(apiPort, () => { console.log(`API app is running on port ${apiPort}`); });