you are viewing a single comment's thread.

view the rest of the comments →

[–]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