DEV Community

Discussion on: Deploy Your Django + React.js app to Heroku

Collapse
 
rmiyazaki6499 profile image
Ryuichi Miyazaki

Another thing to add for those using this tutorial as a skeleton for their project.
Once you update the Frontend you will need to run two commands:

  1. npm run build
  2. python manage.py collectstatic

Otherwise you will run into a Template not found error.

Happy Hacking!