We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3346789 commit 197b234Copy full SHA for 197b234
.dockerignore
@@ -0,0 +1,45 @@
1
+# Ignore files generated by the build process
2
+build/
3
+dist/
4
+*.exe
5
+*.dll
6
+
7
+# Ignore system and IDE files
8
+.DS_Store
9
+Thumbs.db
10
+.vscode/
11
+.idea/
12
13
+# Ignore dependency directories
14
+node_modules/
15
+vendor/
16
17
+# Ignore log files
18
+*.log
19
20
+# Ignore compiled output
21
+*.class
22
+*.jar
23
+*.war
24
+*.ear
25
26
+# Ignore temporary files
27
+*.tmp
28
+*.swp
29
+*.bak
30
31
+# Ignore sensitive or personal information
32
+config.ini
33
+secrets.txt
34
+credentials.json
35
36
37
+# Ignore specific files or directories
38
+*.csv
39
+*.parquet
40
+*.joblib
41
+*.pkl
42
43
+# virtualenv
44
+.ven/
45
+.env
0 commit comments