Файл игнорирования репозитория
This commit is contained in:
52
.dockerignore
Normal file
52
.dockerignore
Normal file
@@ -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
|
||||||
71
.gitignore
vendored
Normal file
71
.gitignore
vendored
Normal file
@@ -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
|
||||||
Reference in New Issue
Block a user