Code - Update .gitignore and .dockerignore (#2797)

pull/2799/head
Kenny Root 2 months ago committed by GitHub
parent 6084b0f23d
commit d9f9fa735d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,18 +1,31 @@
.git # Git
.github .git/
changedetectionio/processors/__pycache__ .gitignore
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__
# 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/

40
.gitignore vendored

@ -1,15 +1,29 @@
__pycache__ # Byte-compiled / optimized / DLL files
.idea **/__pycache__
*.pyc **/*.py[cod]
datastore/url-watches.json
datastore/* # Caches
__pycache__ .mypy_cache/
.pytest_cache .pytest_cache/
build .ruff_cache/
dist
venv # Distribution / packaging
test-datastore/* build/
test-datastore dist/
test-memory.log
*.egg-info* *.egg-info*
# Virtual environment
.env
.venv/
venv/
# IDEs
.idea
.vscode/settings.json .vscode/settings.json
# Datastore files
datastore/
test-datastore/
# Memory consumption log
test-memory.log

Loading…
Cancel
Save