Project Going Offline

I made a discord bot and a website to go with it all in the same project and it keeps going offline even though I have this in my main bot.js file

the bot seems to become inactive after a while but when I use this keep alive method of const http = require('http'); const express = require('express'); const app = express(); app.get("/", (request, response) => { console.log(Date.now() + " Ping Received"); response.sendStatus(200); }); app.listen(process.env.PORT); setInterval(() => { http.get(`http://${process.env.PROJECT_DOMAIN}.glitch.me/`); }, 280000); upon visiting the website it just displays ok instead of the actual website

Please help bots down but website isn’t and I’m really need it fixing

Hey @KyleBurnip, from a quick look at your project it seems like it’s running fine overall, and is receiving messages from UptimeRobot to keep it alive. I take it from your message that your bot’s not joining guilds as you expect it to, but I don’t see anything obviously wrong, and the log messages make itr seem like it’s logging in just fine.

Perhaps you can provide a little more detail about what you’re seeing to help other folks help you better. Additionally I’m moving this to the Discord Help category since it doesn’t appear to be a problem with Glitch, and the Discord bot experts over there may have a better idea of what’s going on.