Project stuck on Loading Project

So its stuck on Loading Project and i cant activate my bot.
Im not sure what’s wrong it was working fine for like a week.
Project name: daffy-antique-cuuitj6d4
Screenshot from Google Chrome Console

It might be because you are running low on disk space! Support staff could help you out with that and give you more disk space for 24 hours! Hm, It seems like I can access your project now! Also it might be a good idea to store your bot token in an .env file!

Hi Sebastian-sys!

I wasn’t able to replicate the edit page “glitch.com/edit/#!/daffy-antique-cuuitj6d4” loading forever; when I visited it loaded promptly. However, the loading page at the front page “daffy-antique-cuuitj6d4.glitch.me” goes forever because your express app isn’t listening for requests. ~hello-express has code like this, which is missing from ~daffy-antique-cuuitj6d4.

const listener = app.listen(process.env.PORT, () => {
  console.log("Your app is listening on port " + listener.address().port);
});

The console log message doesn’t matter of course but if your Glitch project never actually listens to a webserver port, then the “daffy-antique-cuuitj6d4.glitch.me” page will never stop loading; that’s what it’s waiting for.

Hope this helps - if you can’t access the edit page within a minute, please let me know!

Johnicholas

This is probably why you should store your token in your .env file