Hey, my project is constantly “waking up”. I was wondering if you could turn it on or whatever would keep it from doing what it’s doing right now.
1 Like
Hi @edwrddd, if you change
app.listen(3030);
to
app.listen(process.env.PORT);
I think your project will start up the way you expect.
3 Likes
Ahh thanks so much.
2 Likes