504 Gateway Timeout, Don't know why

trying to figure out why glitch is glitching

Hey there, if what you’re talking about is why nothing happens when you load https://astrogenstudios.glitch.me/ (and that it eventually times out) that’s because at the bottom of your server.js file you never send a response to app.get('/'). You need to add something like response.send('OK'); in that callback and express will then send that response and close the request.

If that’s not what you mean then perhaps you can give some additional details?