Hosting my front-end using github pages and back-end using render
Hello, I was able to host my front-end on github pages.
Now, when it comes to render, I link render to my back-end repo. The server successfully deploy it and give me a particular url.
But when I use postman to test the link it doesn't work, here is my code:
I removed my static route, I have a route folder though can it be problematic?
4 Replies
These are the 2 console log statements I got
does port matters here?
hmm manage to make it work, question though, render always send a GET 404 request,:
anyone knows why? is it expecting an app.get with / as path?
that looks like the log from a webserver. Something is performing a GET request to
/ and it's sending a 404 status code as a responseYou have nothing mapped to
/ so it's 404'ingyeah, it's strange though I don't really send a request to
/ on my front-end I should verify
thanks !