在构建成功后,heroku一直无法反映代码中的更改,我一直遇到问题。
我在前端使用了angular,所以当我运行ng build
时,将dist文件夹中的文件放在前端静态文件夹中(是,我的collect static工作正常)
做
git add .
git commit -m "nifty commit message"
git push origin master && git push heroku master
我尝试使用heroku reset
运行heroku run python manage.py makemigrations
和heroku run python manage.py migrate
来查看这是否是数据库问题。没什么。我尝试了以下修复,但没有结果。
Heroku doesn't see my changes after git push
https://github.com/mars/create-react-app-buildpack/issues/66
并成功构建我的应用程序并推送,当我进入heroku网站时我看不到我的更改。
我做了两次测试。
我创建了一个test.html
文件,并将其添加到前端静态文件中,只是看它是否会在bash的heroku中显示
然后我将index.html
<title>
标签从“ Suits + Tables”更改为“ Suits and Tables and Tables”
我看到了test.html
文件,但标题没有改变。
这意味着零。解决方法是什么?