From f95fc38df86d4ed1eabcc4a27f5587efe3b8c4eb Mon Sep 17 00:00:00 2001 From: Dmitry Afanasyev Date: Wed, 6 Apr 2022 14:49:53 +0300 Subject: [PATCH] update .gitignore --- .gitignore | 107 ++++++++++++++++++ get_project_core/.gitignore | 1 - .../__pycache__/__init__.cpython-310.pyc | Bin 335 -> 0 bytes .../__pycache__/settings.cpython-310.pyc | Bin 845 -> 0 bytes get_projects.py | 1 - 5 files changed, 107 insertions(+), 2 deletions(-) create mode 100644 .gitignore delete mode 100644 get_project_core/.gitignore delete mode 100644 get_project_core/__pycache__/__init__.cpython-310.pyc delete mode 100644 get_project_core/__pycache__/settings.cpython-310.pyc diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ccee39 --- /dev/null +++ b/.gitignore @@ -0,0 +1,107 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# 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 + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ + +.idea/ +.vscode/ \ No newline at end of file diff --git a/get_project_core/.gitignore b/get_project_core/.gitignore deleted file mode 100644 index 2eea525..0000000 --- a/get_project_core/.gitignore +++ /dev/null @@ -1 +0,0 @@ -.env \ No newline at end of file diff --git a/get_project_core/__pycache__/__init__.cpython-310.pyc b/get_project_core/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f16eb716526db0b849979ef003c77d6038722a30..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 335 zcmYjK!Ait15KU6uE#iWB@C!ufVH?4#h*vMNC@Az2(sZ^>O_Q3W=>CfbJ^C%4yyoi3 zU+`qs-GUG1&Age%8#9~jp@`3q)AA+uueJD(B#O&e?j%x$Dy&ek?nL2^6a*tcZPM<% z?gDwkINonjmV8Gqy3TMoy3!8BVBrQH2XOwLTP<~+O+son8&@2UQ{Hp&z-w^%V3m^P zSq{$vdM}N3mc+!6j*c+hTEamk9WNEIr%kkbM|K*$fAn)l8`A+TxpEC%tVF|Yx3H!K z;T^5yatRi+r#1L_ExqF9ydSS|$F_nAV}UXzwe*bT{VJsAov8)|7dXChlSnDr$A{z> DR-i3qBYd=7CwTjNm@L0q)x zEFEi$b?Oxxq(K7GB;i*dL6vidx{J-FlSB}AkGjSEC4yLY@c^_fy7iy-khGR4*#`9y z-LB)J#bdfB+umG4aB@a4h#SC{D^o8xkLrE^aE zhljnBlio)-JIBX;&ihJz9>jIP&h^fK(F@9kSG56sMXiJ52`x1qUU8}vU~t|_T|eP18=6mlNZuxiZZe%nf1Eg+-V!O~*N-X=;KQme8wN%PMI>N^)uZRjzSfl2pxT zCgHzuq;J0rB<13Q8V?g<0;P$lv}sMKepBz!gbJYDi}7Ed9=$c4b1f<6$G9Yn%48!G zr4mqix)Mz5sGeGbuLBLIt0e$65oEe^nl{wCN%Gy1Pi;T;`u!oE3Qpq@W@;Lr&9f<% z{7j01W?IE0ACIY>DuxF4C%I;Lv_HG`f|lNpG!v4>P*B6dRBtvn;eZQLF*-z0MLmNn bbV3xO2u0qe7uCo`?LT1v*o{ydo^|&xIk*C> diff --git a/get_projects.py b/get_projects.py index 11d2446..6ba9e42 100644 --- a/get_projects.py +++ b/get_projects.py @@ -49,4 +49,3 @@ if __name__ == '__main__': logger.error('Gitlab group id must be set') except ValueError: logger.error('Gitlab group id must be integer') -