我正在尝试在Heroku中部署项目。
这是我的.slugignore
:
/source/coffee/
/source/scss/
/source/jade/
/gruntfile.coffee
/README.md
当我执行git push heroku master
命令时,会出现以下消息:
(...)
-----> Deleting 5 files matching .slugignore patterns.
-----> Node.js app detected
-----> Resolving engine versions
Using Node.js version: 0.10.21
Using npm version: 1.3.11
-----> Fetching Node.js binaries
-----> Vendoring node into slug
-----> Installing dependencies with npm
(...)
但是当我克隆项目时,应该忽略的文件仍然存在。
我也留下了项目树:
答案 0 :(得分:2)
Slugignore只控制应用程序slug中的内容,而不是Heroku repo中的内容。因此,如果您运行heroku run bash
并使用ls
进行了检查,您会发现.slugignore
中的内容不存在。如果您不希望在git仓库中包含某些内容,请使用.gitignore。