Skip to content

Commit d1c38fb

Browse files
committed
add gitignore for excluding cache files
1 parent e56d12a commit d1c38fb

File tree

1 file changed

+32
-2
lines changed

1 file changed

+32
-2
lines changed

.gitignore

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,34 @@
1-
# Ignore all Markdown files
1+
# Byte-compiled / pycacahe
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
25

3-
README.md
6+
# Translations
7+
*.mo
8+
*.pot
49

10+
# Django stuff:
11+
*.log
12+
local_settings.py
13+
db.sqlite3
14+
15+
# Environments
16+
.vscode
17+
.env
18+
.venv
19+
env/
20+
venv/
21+
ENV/
22+
env.bak/
23+
venv.bak/
24+
25+
# mkdocs documentation
26+
/site
27+
28+
# mypy
29+
.mypy_cache/
30+
.dmypy.json
31+
dmypy.json
32+
33+
# Pyre type checker
34+
.pyre/

0 commit comments

Comments
 (0)