aboutsummaryrefslogtreecommitdiff
path: root/cmd/worker
diff options
context:
space:
mode:
authorJonathan Amsterdam <jba@google.com>2021-01-26 15:12:37 -0500
committerJonathan Amsterdam <jba@google.com>2021-01-26 20:22:06 +0000
commit4890b3bc4f0da67e6fe734299bfd94f91e65fa36 (patch)
tree885dae692682b414395d4c215eabbdb43b31237f /cmd/worker
parent34b331ad786a552730dce60d0f63d655ebbbddc0 (diff)
downloadgo-x-pkgsite-4890b3bc4f0da67e6fe734299bfd94f91e65fa36.tar.xz
many: add node_modules directory to .gcloudignore
This directory is created by npm and is large. In fact, including it results in too many files for `gcloud app deploy`. Also, put .gcloudignore files under version control. Change-Id: I6cbf1c42b312911b9b2b16215469cb027bedebe1 Reviewed-on: https://go-review.googlesource.com/c/pkgsite/+/286932 Trust: Jonathan Amsterdam <jba@google.com> Run-TryBot: Jonathan Amsterdam <jba@google.com> Reviewed-by: Julie Qiu <julie@golang.org>
Diffstat (limited to 'cmd/worker')
-rw-r--r--cmd/worker/.gcloudignore29
1 files changed, 29 insertions, 0 deletions
diff --git a/cmd/worker/.gcloudignore b/cmd/worker/.gcloudignore
new file mode 100644
index 00000000..1fc7912e
--- /dev/null
+++ b/cmd/worker/.gcloudignore
@@ -0,0 +1,29 @@
+# This file specifies files that are *not* uploaded to Google Cloud Platform
+# using gcloud. It follows the same syntax as .gitignore, with the addition of
+# "#!include" directives (which insert the entries of the given .gitignore-style
+# file at that point).
+#
+# For more information, run:
+# $ gcloud topic gcloudignore
+#
+.gcloudignore
+# If you would like to upload your .git directory, .gitignore file or files
+# from your .gitignore file, remove the corresponding line
+# below:
+.git
+.gitignore
+
+# Binaries for programs and plugins
+*.exe
+*.exe~
+*.dll
+*.so
+*.dylib
+# Test binary, build with `go test -c`
+*.test
+# Output of the go coverage tool, specifically when used with LiteIDE
+*.out
+
+# npm
+node_modules
+