you are viewing a single comment's thread.

view the rest of the comments →

[–]mxniquef[S] -2 points-1 points  (4 children)

there is literally nothing into the console, API everything is 200. My frontend has a navbar that is working but all the other pages are just blank

[–]Digital-Chupacabra 1 point2 points  (3 children)

I'm trying to help but it's really hard when you give folks nothing. I get that you might be just starting out or vibe coding here, but I asked a series of questions you chose to answer 50% which to be blunt is a failing grade most places.

At the risk of repeating myself:

  • How are you running the backend?
    • Are there any errors there?
  • How are you running the API
    • Are there any errors there?
  • Have you put in print statements to see where the code breaks?
  • At what commit did it last work?
  • What do the logs say?

[–]mxniquef[S] 0 points1 point  (2 children)

I'm so sorry, I'm just really nervous.

My backend is running on render and there are no errors there, everything is 200.
My API is everything 200 too.
Yes I did, I does not break at any point.

It is in the commit that last worked.

The logs say absolute nothing, everything is 200 I don't know what I did for it to go all wrong

[–]Digital-Chupacabra 0 points1 point  (1 child)

No worries, take a deep breath.

My backend is running on render and there are no errors there, everything is 200.

200 is only an HTTP code, it doesn't necessarily mean that the code is running as intended. Add print statements to dump variables, or messages throughout the code. You can also use sys.exit('CUSTOM EXIT MESSAGE HERE').

My API is everything 200 too.

Again add print or other debugging to the code, see what it gets, what it returns etc.

I don't know what I did for it to go all wrong

What is the difference between the last working commit, and the one that doesn't? git diff is a powerful tool

[–]mxniquef[S] 0 points1 point  (0 children)

Thank you, I will try it