如何更新Heroku上的site-packages中的文件

时间:2013-02-03 23:34:46

标签: django git heroku

我刚为我的django项目安装了django-robots-txt。现在,正如项目所述,我必须根据我的需要编辑robot.txt文件。由于我无法将该文件压缩到我的Heroku服务器上,因此我不确定如何在服务器上编辑此文件。有谁知道怎么做?

1 个答案:

答案 0 :(得分:0)

在本地计算机上编辑文件。

做一个

git add -u 

更新项目资源。 然后

git commit -m "changes that you made"

git push heroku master(assuming you are working on the master branch)

这应该将您最近的更改(包括robots.txt中的更改)推送到heroku。