From a4dbcc04113ee559ee416ac53fc64af62e68e1b4 Mon Sep 17 00:00:00 2001 From: MaxvandenBoom Date: Wed, 15 Feb 2023 14:23:21 -0600 Subject: [PATCH] Added gitignore --- .gitignore | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..229ac9f --- /dev/null +++ b/.gitignore @@ -0,0 +1,57 @@ +# no mac stuff in the git +.AppleDouble +.LSOverride +.DS_Store +**/.DS_Store +__MACOSX +**/__MACOSX + +# no windows stuff either +desktop.ini +**/desktop.ini + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class +.pytest_cache/ + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +# build/ # commented due to some strangeness with Docker/circle setup +develop-eggs/ +dist/ +build/lib* +build/temp* +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg +pip-wheel-metadata/ + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +auth/ +secrets.py +local_settings.py + +*.swp