Example Glitch page is down for APIs and Microservices Projects - Exercise Tracker

Hi,

As title, can someone check the status of the example Glitch page of the APIs and Microservices Projects - Exercise Tracker.

The site has been down for some days. It is a bit difficult to pass all the user stories in this case, since we cannot check the format of the respond the test is expecting to get.

For example, for the 5th user story.
“I can retrieve a full exercise log of any user by getting /api/exercise/log with a parameter of userId(_id). App will return the user object with added array log and count (total exercise count).”
One example of my respond for the query to my app (https://exercise-tracker-practice.glitch.me/) is:

{
 "user":
  {
   "_id":"5f326c8a8b992737503ea915",
   "username":"fcc_test_15971400880",
   "__v":0
  },
 "exercises":[{"_id":"5f326c8b8b992737503ea916","user":"5f326c8a8b992737503ea915","description":"test","duration":60,"date":"1990-01-01T00:00:00.000Z","__v":0}],
 "count":1}

This, however, does not pass the test.
Any help would be appreciated, maybe some one who has already passed can share the expected format and field of the test for this user story.
Thanks.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko/20100101 Firefox/79.0.

Challenge: Exercise Tracker

Link to the challenge:

Had a look of the other solution on Glitch.
It turns out simply changing the key from "exercises" to "log" in the respond object will let you pass the test…
Still, it would be nice to change the description to include this detail so that one can work on it even if the Glitch example is down.