const express = require('express');
const bodyParser=require('body-parser');
const res = require('express/lib/response');
const app=express();
app.use(bodyParser.json());
require('/routes/dialogFlowRoutes')(app);
var PORT =process.env.PORT || 5000;
app.listen(PORT,()=>{
console.log('App is runing on port ${PORT}');
});
i am new to it but i am getting error in heroku when i deploy my first app i don't know much about errors in it now so cant able to figure out the error i am getting anyone can help me out it will be grateful