My project is stuck at 'Starting' and has the status loader continuously spinning

My project, twitterstreamliker is stuck at ‘Starting’ and has the status loader continuously spinning. The only other similar question says to change the port number but I have tried that.

Tom

I can’t reproduce this in a remix - do you see any errors in the logs?

It only seems to do it when I have the correct keys in my .env file

Where’s best to access logs?

Click on ‘Status’ and logs appear in the panel that opens.

Ah, yep all in there is working correctly - I was looking through /var/log in the console haha

Can I invite you to edit mine and you’ll be able to see it then?

Oh gee what did I have wrong :///

Your project wasn’t listening on a port, so I added the following which tells Express to look for requests on port 3000.

// listen for requests :)
var listener = app.listen(process.env.PORT, function () {
  console.log('Your app is listening on port ' + listener.address().port);
});

Ah you’re totally right - I removed that accidentally before. Thank you appreciate the help!