Application failed to respond
my generated domain: paldle-production.up.railway.app
app is deployed and running. logging server being connected.
when i go to paldle-production.up.railway.app, i get page Application failed to respond
Solution:Jump to solution
I recommend you read this: https://docs.railway.app/guides/fixing-common-errors
6 Replies
Project ID:
070c5aab-5bae-4dad-a4b1-ed2005a6d974
070c5aab-5bae-4dad-a4b1-ed2005a6d974
Solution
I recommend you read this: https://docs.railway.app/guides/fixing-common-errors
my server file:
const PORT = process.env.DEV_PORT || 8000
server.listen(PORT, "0.0.0.0", () => {
console.log(
Server Connected on ${PORT}...
)
});
i am getting the log "Server Connected on 8000..."
but https://paldle-production.up.railway.app/ shows Application failed to respondYou're not pulling the PORT env variable, you're pulling the DEV_PORT variable
Please read the link fragly sent
im stupid
all good thank you