[Fixed]-Download and setup a Angular/Django site from server to localhost?

1👍

Try editing the settings.py file set the DEBUG value to True. Instead of a 404 you should get a full debug of the actual request and see what exactly is missing (I suspect missing data as @NightShadeQueen pointed).

Also you might have a look at django debug toolbar which prints the executed sql queries as well and run them against your local database to see what exactly they return.

Leave a comment