From c10def50ee3cdf82acd6d0ee28eb766df08cb8d8 Mon Sep 17 00:00:00 2001 From: Dmitry Pimenov Date: Tue, 11 Mar 2025 11:06:49 -0700 Subject: [PATCH 1/2] removing ds store, adding gitignore --- .DS_Store | Bin 6148 -> 0 bytes .gitignore | 5 +++++ 2 files changed, 5 insertions(+) delete mode 100644 .DS_Store create mode 100644 .gitignore diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 233522f69d52b97a5e2c8753c33cc2f72fe2fb1a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHKL2uJA6n<_ynr;I10MafdD2$a&RKF1(=dvax z({mRnIL1jNhkhh|=p4|BWxz7%`8Vx>|1uoS`}OCUp@E)I5E4fo03{&HD!9z1${ zc-9|B=drxfvkDil9y?k`RE6PVdMeH%+zQ@x+{DS?Dg8e4eF}_(jHR%$1l=mrd zhS@ppVda-7Q{?*zGYu()X9{i2m-ub?l6f0ybcRfhs7t57COm@tY{YzJJ<52;rZmi3 zDVDNU8<-zlqAv2u3}r2=G@}d59I2-@F2rSiver!Q3vVPU(KM&*La9LK7`NAWg_5{$Xr0JaUTG@=J$e*_c_wz3TTRR(?m DLv7br diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..3198b3fe --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +.env +__pycache__/ +*.pyc +venv/ \ No newline at end of file From 1bea80c421da2d84e18bbc4b242f4caacebcbe45 Mon Sep 17 00:00:00 2001 From: Dmitry Pimenov Date: Tue, 11 Mar 2025 11:11:19 -0700 Subject: [PATCH 2/2] updating gitignore with more coverage --- .gitignore | 144 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 141 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 3198b3fe..9da95ba3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,143 @@ +# macOS Files .DS_Store -.env + +# Byte-compiled / optimized / DLL files __pycache__/ -*.pyc -venv/ \ No newline at end of file +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pdm +.pdm.toml +.pdm-python +.pdm-build/ + +# PEP 582 +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ +.venv39 +.venv_res + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +#.idea/ + +# Ruff stuff: +.ruff_cache/ + +# PyPI configuration file +.pypirc