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 7128151 commit 18e1c38Copy full SHA for 18e1c38
app/.dockerignore
@@ -3,26 +3,27 @@
3
**/Thumbs.db
4
5
# Common Development Tools
6
-**/.vscode/*
7
-**/.idea
+**/.vscode/
+**/.idea/
8
9
# Python Artifacts
10
-**/__pycache__
+**/__pycache__/
11
**/*.py[cod]
12
-**/.venv
13
-**/env
14
-**/venv
+**/.venv/
+**/env/
+**/venv/
15
16
# Build Artifacts
17
-**/build
18
-**/dist
+**/build/
+**/dist/
19
+**/*.egg-info/
20
21
# Temporary Files
22
**/*~
-**/.tmp
23
+**/.tmp/
24
25
# Version Control
-**/.git
26
+**/.git/
27
28
# SSH Keys
29
**/**/.ssh/id_*
@@ -31,4 +32,8 @@
31
32
# Makefile
33
Makefile
34
35
+# Configuration Files
36
+*.dockerignore
37
+.dockerignore
38
+
39
# End of file
0 commit comments