From aac6d7c8276f37c031fa580320870f926cfaa458 Mon Sep 17 00:00:00 2001 From: Martin Schett Date: Sun, 22 Nov 2020 20:37:10 +0100 Subject: [PATCH] Updated .gitignore --- .gitignore | 85 +++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 75 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 4f14af0..831063c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,3 @@ -.idea/ -*.iml -.vscode/ - -node_modules/ -venv/ -env/ - - - .DS_Store .DS_Store? ._* @@ -15,3 +5,78 @@ env/ .Trashes ehthumbs.db Thumbs.db +*.sqlite3 +media/ +*.pyc +*.db +*.pid + + +node_modules/ +env/ + +# Default ignored files +/shelf/ +/workspace.xml + +#pycharm +.idea +pycache + +.idea/ +*.iml +.vscode/ + +#src https://gist.github.com/santoshpurbey/6f982faf1eacdac153ffd86a3a694239 + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ + +# Django stuff: +*.log +local_settings.py + +# virtualenv +.venv +venv/ +ENV/ +.vscode + +# Ignore Django Migrations in Development if you are working on team + +# Only for Development only +**/migrations/** +!**/migrations +!**/migrations/__init__.py \ No newline at end of file