From 3ca728e038642c34d2065d9acd11ba71826e7326 Mon Sep 17 00:00:00 2001 From: Conrad Date: Thu, 2 Jan 2020 20:31:54 +0100 Subject: [PATCH] Added gitignore --- .gitignore | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5d30756 --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +### PYTHON ### +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# pyenv +.python-version + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ +.env_docs/ + +### Sphinx ### +_build/ +_templates/ +_static/ + +### DJANGO ### +# Django Database Files +db.sqlite3 +*.sqlite3-journal + +# Excluding Django Static Folder +static/ + +### Operating Systems ### +# macOS +.DS_Store