I have certain folders that I ignore in my .gitignore as I do not want it to be published on Github.
However, these files are essential for when deploying to Google Cloud (local packages).
If I take out .gitignore from .gcloudignore then the files that I do want to ignore (like venv, .idea, .pyc) are uploaded, which is what I do not want.
How can I there include only a portion of .gitgnore in .gcloudignore?
.gcloudignore
.gcloudignore
.git
.gitignore
node_modules
#!include:.gitignore
.gitignore
# This I want to ignore in .gcloudignore
.Python
env/
build/
# This I want to keep in .gcloudignore
module_data_import
module_calendar