aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2024-02-09 15:23:23 +0100
committerTaras Madan <tarasmadan@google.com>2024-02-09 14:58:42 +0000
commit77b23aa147a898d1e1912a5f01e6716bbdc3a59e (patch)
treeb810ca6cdf28ca74fdd9033ee5ec33b114be96d8 /dashboard
parent7f07e9b0e2d1b715e875a446eea8399f9bb8a4b2 (diff)
.gcloudignore: enable blacklist
gcloud beta app deploy in GOMOD uploads 1.7G of data. There is a way to see what files were recently uploaded. Let's get working solution first and review how can we reduce 1.7G to the current 30M. To see what files are uploaded: $ version=$(gcloud app --project=syzkaller versions list --sort-by '~version' --format='value(version.id)' --hide-no-traffic --limit=1) $ gcloud app --project=syzkaller versions describe --service=default "$version"
Diffstat (limited to 'dashboard')
-rw-r--r--dashboard/app/.gcloudignore25
1 files changed, 25 insertions, 0 deletions
diff --git a/dashboard/app/.gcloudignore b/dashboard/app/.gcloudignore
new file mode 100644
index 000000000..2169daefd
--- /dev/null
+++ b/dashboard/app/.gcloudignore
@@ -0,0 +1,25 @@
+# This file specifies files that are *not* uploaded to Google Cloud
+# 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 \ No newline at end of file