-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy path.dockerignore
More file actions
135 lines (108 loc) · 1.93 KB
/
.dockerignore
File metadata and controls
135 lines (108 loc) · 1.93 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# Ignore all directories named `user-resources` anywhere in the project
**/user-resources/
# Ignoring binary/output
**/target/
**/out/
# Ignoring packages
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# Ignoring VSCode related files
.vscode/
# Ignoring IntelliJ related files
*.iml
.idea/
.idea_modules/
lib_managed/
src_managed/
# Ignoring Eclipse files
.classpath
.project
.settings
# Ignoring sublime files
*.sublime-workspace
# Ignoring index folder and data folder
index/
catalog/
plan/
plan_files/
query-results/
# Ignoring Mac OSX specific files
.DS_Store
# Ignoring jenv related files
.java-version
# Ignoring scala related files
hs_err_pid*
# Ignoring Python related files
venv/
__pycache__/
*.py[cod]
*$py.class
.ipynb_checkpoints
.pytype/
# Ignoring Python-generated files
*.model
*.pkl
# Ignoring user-generated resources
user-resources/
# Ignoring Gmail tokens
gmail/
# Ignoring Maven-related files
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar
# Ignoring sbt related files
.bsp/
sbt.json
# Ignoring rebel related files
rebel.xml
# Ignoring log files
*.log
*.log.gz
# Ignoring the entire log folder
log/
# Ignoring package-lock.json
package-lock.json
# Ignoring Protobuf related files
scalapb/scalapb
# Ignoring credentials
client_secret_*
StoredCredential*
**/apache2/
**/Apache24/
**/php/
Composer-Setup.exe
# Ignoring folders generated by VSCode IDE
.metals/
.bloop/
.ammonite/
metals.sbt
# === NEW: Ignore frontend-related files ===
# Ignore node_modules in all subdirectories
**/node_modules/
**/.pnp/
**/.pnp.js
# Ignore Angular build output
**/dist/
**/.angular/cache/
**/.nx/cache/
# Ignore Yarn cache and lock files
**/.yarn/cache/
**/.yarn/install-state.gz
**/.pnp.cjs
**/.pnp.loader.mjs
# Ignore frontend dependency-related files
**/yarn-error.log
**/.turbo/
**/.next/
**/coverage/