diff --git a/.dockerignore b/.dockerignore index 320bd34f..2f88d7d3 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,18 +1,31 @@ -.git -.github -changedetectionio/processors/__pycache__ -changedetectionio/api/__pycache__ -changedetectionio/model/__pycache__ -changedetectionio/blueprint/price_data_follower/__pycache__ -changedetectionio/blueprint/tags/__pycache__ -changedetectionio/blueprint/__pycache__ -changedetectionio/blueprint/browser_steps/__pycache__ -changedetectionio/fetchers/__pycache__ -changedetectionio/tests/visualselector/__pycache__ -changedetectionio/tests/restock/__pycache__ -changedetectionio/tests/__pycache__ -changedetectionio/tests/fetchers/__pycache__ -changedetectionio/tests/unit/__pycache__ -changedetectionio/tests/proxy_list/__pycache__ -changedetectionio/__pycache__ +# Git +.git/ +.gitignore +# GitHub +.github/ + +# Byte-compiled / optimized / DLL files +**/__pycache__ +**/*.py[cod] + +# Caches +.mypy_cache/ +.pytest_cache/ +.ruff_cache/ + +# Distribution / packaging +build/ +dist/ +*.egg-info* + +# Virtual environment +.env +.venv/ +venv/ + +# IntelliJ IDEA +.idea/ + +# Visual Studio +.vscode/ diff --git a/.gitignore b/.gitignore index 99839fec..835597c3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,29 @@ -__pycache__ -.idea -*.pyc -datastore/url-watches.json -datastore/* -__pycache__ -.pytest_cache -build -dist -venv -test-datastore/* -test-datastore -test-memory.log +# Byte-compiled / optimized / DLL files +**/__pycache__ +**/*.py[cod] + +# Caches +.mypy_cache/ +.pytest_cache/ +.ruff_cache/ + +# Distribution / packaging +build/ +dist/ *.egg-info* + +# Virtual environment +.env +.venv/ +venv/ + +# IDEs +.idea .vscode/settings.json + +# Datastore files +datastore/ +test-datastore/ + +# Memory consumption log +test-memory.log