ResumeBuilder / src /server.js
Mokshith's picture
port
aca44b5
raw
history blame contribute delete
227 Bytes
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}`);
});