我的 CouchApp 具有以下文件夹结构,其中 app 文件夹内的文件被编译到该_attachments
文件夹中:
my_couchapp
├── _attachments/
│ ├── app.js
│ ├── app-tests.js
│ └── index.html
├── app/
│ └── app.js
├── Assetfile
└── views/
我想排除文件Assetfile
和_attachments/app-tests.js
文件夹app
。
我现在的.couchappignore
样子是这样的:
[
"app",
"Assetfile",
"_attachments/app-tests.js"
]
但这似乎不起作用。app
所有以文件夹内开头的_attachments
文件都不会被推送。
如何定义通过 CouchApp 推送时要排除的文件夹和特定文件couchapp push
?