The documentation says:
One important thing to note is that you can use a .gitignore file to exclude files from being pushed. When you use apify push without a .gitignore, the full folder contents will be pushed, meaning that even the storage and node_modules will be pushed. These files are unnecessary to push, as they are both generated on the platform.
But there might be completely valid use-cases when I want to keep my whole project (code + documentation + assets/images) in GH repository but I am not interested in pushing these via apify push as it would be extra bandwidth, time during building Dockerimage etc.
Would it be possible to introduce support for ignored files, that would be considered just by apify push (additionally to .gitignore)?
The documentation says:
But there might be completely valid use-cases when I want to keep my whole project (code + documentation + assets/images) in GH repository but I am not interested in pushing these via
apify pushas it would be extra bandwidth, time during building Dockerimage etc.Would it be possible to introduce support for ignored files, that would be considered just by
apify push(additionally to.gitignore)?