I'm not sure if this problem was unique to my browser, but when I first started up Neoflix on my local host, I didn't see anything populate under the "Popular Moves" or "Latest Releases" sections.
Eventually I looked into it with the developer tools inspector and saw several errors (in the network tab)
Looking at the errors, one of them read,
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://localhost:3000/api/movies?sort=imdbRating&order=desc&limit=6&limit=6. (Reason: CORS header ‘Access-Control-Allow-Origin’ missing). Status code: 308.
Since this is my first time working on a flask app, I wasn't sure exactly how to fix this, but looking around online I found out that you can install the package Flask-CORS, which will allows you to add the missing HTTP request header.
In requirements.txt, I just added:
Flask-CORS==3.0.10
and at the top of app-python/api/init.py,
from flask_cors import CORS
and in the same file in the method create_app,
CORS(app)
Now it's working much better, although there are still images that don't show up, but that might be unrelated.