We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2308a96 commit 8d551efCopy full SHA for 8d551ef
.dockerignore
@@ -0,0 +1,52 @@
1
+# Build outputs
2
+**/target/
3
+
4
+# Version control
5
+.git/
6
+.gitignore
7
+.github/
8
9
+# Development environments
10
+.vscode/
11
+.idea/
12
+.DS_Store
13
+*.sublime-*
14
+.vs/
15
16
+# Rust specific
17
+**/*.rs.bk
18
+**/Cargo.lock
19
+*.pdb
20
21
+# Docker
22
+Dockerfile*
23
+docker-compose*
24
25
+# Logs and databases
26
+**/*.log
27
+**/*.sqlite*
28
+**/*.db
29
+**/*.sql.gz
30
+**/*.dump
31
+database/data/
32
+logs/
33
34
+# Temp files
35
+**/tmp/
36
+**/temp/
37
+**/.tmp/
38
+**/*.tmp
39
+**/*.bak
40
+**/*.swp
41
42
+# Secret files
43
+**/*.pem
44
+**/*.key
45
+**/*secret*
46
+**/*credentials*
47
+**/config.json
48
+**/.env*
49
50
+# Documentation
51
+README.md
52
+docs/
0 commit comments