-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gcloudignore
55 lines (45 loc) · 883 Bytes
/
.gcloudignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#
# .gcloudignore
#
# Defines the files *not* sent to Cloud Build.
#
# Note:
# We could go with the default (that is built by '.gitignore' files), but there are some other, unnecessary paths that
# don't need to be in the build.
#
# List files that would be sent:
# <<
# # in project root
# $ gcloud meta list-files-for-upload
# <<
#
# Default (follow the '.gitignore's):
#
.gcloudignore
.git
.gitignore
.npmignore
#!include:.gitignore
# ^-- Note: '#!include' is a command; not a comment!
# No need for submodules
/**/.gitmodules
# Global '.gitignore' (of the author); not observed by Cloud Build defaults
#
/.idea/
.DS_Store
/ci/cloudbuild.yaml
# Others irrelevant for the build
#
/**/.images/
/**/images/
*.md
.editorconfig
.npmrc
# sample/*-debug.log
*.log
# For manual use, only
/sh/
# Local Docker specific
/firebase-ci-builder.sub/
*.disabled
*.delme