DEV Community

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

Collapse
 
joeszaf profile image
Joe Szaf

Ran into the same problem.

It was fixed when I actually committed my work before pushing to master.

Specifically, I ran the following before "$ git push heroku master" :

git add .
git commit -m "initial commit"