a year ago
Application failed to respond
This error appears to be caused by the application.
If this is your project, check out your deploy logs to see what went wrong. Refer to our docs on Fixing Common Errors for help, or reach out over our Help Station.
If you are a visitor, please contact the application owner or try again later.
Request ID:
4 Replies
a year ago
Make sure when you start the server that you set valid port. Port in your project must be the same as the port in Settings -> Public Networking .
const port = process.env['PORT'] || 4000;
app.listen(port, () => {
console.log(`Node Express server listening on port ${port}`);
});patrikhorvatic
Make sure when you start the server that you set valid port. Port in your project must be the same as the port in Settings -> Public Networking . ```typescript const port = process.env['PORT'] || 4000; app.listen(port, () => { console.log(`Node Express server listening on port ${port}`); }); ```
a year ago
im using angular project not node.js node project its working fine
only angular project is not working
abk8406
im using angular project not node.js node project its working fine only angular project is not working
a year ago
Check this out https://docs.railway.com/guides/angular
It is an angular template
sim
Check this out <https://docs.railway.com/guides/angular> It is an angular template
a year ago
You can use this as a guide but to solve your issue we will need your deployment logs https://docs.railway.com/guides/logs#deployment-logs