Bram Vanroy
commited on
Commit
•
79a800a
1
Parent(s):
c2302bf
add ignore items
Browse files- .dockerignore +1 -0
- .gitignore +2 -1
.dockerignore
CHANGED
@@ -3,6 +3,7 @@
|
|
3 |
**/.mypy_cache
|
4 |
**/.idea
|
5 |
|
|
|
6 |
# Byte-compiled / optimized / DLL files
|
7 |
__pycache__/
|
8 |
*.py[cod]
|
|
|
3 |
**/.mypy_cache
|
4 |
**/.idea
|
5 |
|
6 |
+
*.txt
|
7 |
# Byte-compiled / optimized / DLL files
|
8 |
__pycache__/
|
9 |
*.py[cod]
|
.gitignore
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
Pipfile*
|
2 |
data/*
|
3 |
*config.json
|
4 |
-
|
|
|
5 |
|
6 |
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
7 |
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
|
1 |
Pipfile*
|
2 |
data/*
|
3 |
*config.json
|
4 |
+
.venv
|
5 |
+
*.txt
|
6 |
|
7 |
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
8 |
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|