commit 8f2efd1a4010b6b77e3fceadba1e36674390d22b Author: Verum Date: Mon Feb 23 14:05:24 2026 +0700 Файл игнорирования репозитория diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..52c1e73 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,52 @@ +# Исключить скрытые системные каталоги, но не всё подряд +.git/ +.github/ +.gitlab-ci.yml +.gitattributes +.gitignore +LICENSE + +# Виртуальные окружения и Python-кэш +.venv/ +venv/ +__pycache__/ +*.py[cod] +*.pyo + +# IDE-файлы +.idea/ +.vscode/ +*.swp +*.swo +*~ + +# Тесты и документация +tests/ +test/ +doc/ +docs/ +examples/ +README.md +_count.py +*.md +pytest.ini +.pytest_cache/ + +# Логи и артефакты сборки +*.log +*.logs +*.log.* +*.logs.* +Logs/ +Log/ +dist/ +build/ + +# Примеры и шаблоны +.env +env +.env_example + + +pyproject.toml +poetry.lock diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fcdd9e5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,71 @@ +# .gitignore: Игнорируемые файлы для Python проектов +# Подробнее: https://github.com/github/gitignore/blob/main/Python.gitignore + +### Python ### +# Виртуальные окружения и настройки +*.venv +*.env +venv/ +env/ + +# Кэш интерпретатора +__pycache__/ +*.py[cod] +*$py.class + +# Пакеты и сборки +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.eg +*.egg +*.eggs + +# Poetry +poetry.lock +.pypoetry/ + +### Логи и БД ### +*.log +*.logs +*.log.* +*.logs.* +log/ +logs/ +*.sqlite +*.db + +### IDE ### +.idea/ +.vscode/ +*.swp +*.sublime-* + +### OS ### +.DS_Store +Thumbs.db + +### Тестирование ### +.coverage +htmlcov/ +.tox/ +.nox/ +.pytest_cache/ +.mypy_cache/ +test/ +tests/ +_count.py + + +requirements.txt