File size: 227 Bytes
aca44b5
919f56a
 
27647a0
919f56a
 
 
 
 
1
2
3
4
5
6
7
8
9
10

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}`);
});